home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / lib-tk / Tkinter.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  199KB  |  4,844 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''Wrapper functions for Tcl/Tk.
  5.  
  6. Tkinter provides classes which allow the display, positioning and
  7. control of widgets. Toplevel widgets are Tk and Toplevel. Other
  8. widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
  9. Checkbutton, Scale, Listbox, Scrollbar, OptionMenu, Spinbox
  10. LabelFrame and PanedWindow.
  11.  
  12. Properties of the widgets are specified with keyword arguments.
  13. Keyword arguments have the same name as the corresponding resource
  14. under Tk.
  15.  
  16. Widgets are positioned with one of the geometry managers Place, Pack
  17. or Grid. These managers can be called with methods place, pack, grid
  18. available in every Widget.
  19.  
  20. Actions are bound to events by resources (e.g. keyword argument
  21. command) or with the method bind.
  22.  
  23. Example (Hello, World):
  24. import Tkinter
  25. from Tkconstants import *
  26. tk = Tkinter.Tk()
  27. frame = Tkinter.Frame(tk, relief=RIDGE, borderwidth=2)
  28. frame.pack(fill=BOTH,expand=1)
  29. label = Tkinter.Label(frame, text="Hello, World")
  30. label.pack(fill=X, expand=1)
  31. button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
  32. button.pack(side=BOTTOM)
  33. tk.mainloop()
  34. '''
  35. __version__ = '$Revision: 50704 $'
  36. import sys
  37. if sys.platform == 'win32':
  38.     import FixTk
  39.  
  40.  
  41. try:
  42.     import _tkinter
  43. except ImportError:
  44.     msg = None
  45.     raise ImportError, str(msg) + ', please install the python-tk package'
  46.  
  47. tkinter = _tkinter
  48. TclError = _tkinter.TclError
  49. from types import *
  50. from Tkconstants import *
  51.  
  52. try:
  53.     import MacOS
  54.     _MacOS = MacOS
  55.     del MacOS
  56. except ImportError:
  57.     _MacOS = None
  58.  
  59. wantobjects = 1
  60. TkVersion = float(_tkinter.TK_VERSION)
  61. TclVersion = float(_tkinter.TCL_VERSION)
  62. READABLE = _tkinter.READABLE
  63. WRITABLE = _tkinter.WRITABLE
  64. EXCEPTION = _tkinter.EXCEPTION
  65.  
  66. try:
  67.     _tkinter.createfilehandler
  68. except AttributeError:
  69.     _tkinter.createfilehandler = None
  70.  
  71.  
  72. try:
  73.     _tkinter.deletefilehandler
  74. except AttributeError:
  75.     _tkinter.deletefilehandler = None
  76.  
  77.  
  78. def _flatten(tuple):
  79.     '''Internal function.'''
  80.     res = ()
  81.     for item in tuple:
  82.         if type(item) in (TupleType, ListType):
  83.             res = res + _flatten(item)
  84.             continue
  85.         if item is not None:
  86.             res = res + (item,)
  87.             continue
  88.     
  89.     return res
  90.  
  91.  
  92. try:
  93.     _flatten = _tkinter._flatten
  94. except AttributeError:
  95.     pass
  96.  
  97.  
  98. def _cnfmerge(cnfs):
  99.     '''Internal function.'''
  100.     if type(cnfs) is DictionaryType:
  101.         return cnfs
  102.     elif type(cnfs) in (NoneType, StringType):
  103.         return cnfs
  104.     else:
  105.         cnf = { }
  106.         for c in _flatten(cnfs):
  107.             
  108.             try:
  109.                 cnf.update(c)
  110.             continue
  111.             except (AttributeError, TypeError):
  112.                 msg = None
  113.                 print '_cnfmerge: fallback due to:', msg
  114.                 for k, v in c.items():
  115.                     cnf[k] = v
  116.                 
  117.             
  118.  
  119.         
  120.         return cnf
  121.  
  122.  
  123. try:
  124.     _cnfmerge = _tkinter._cnfmerge
  125. except AttributeError:
  126.     pass
  127.  
  128.  
  129. class Event:
  130.     '''Container for the properties of an event.
  131.  
  132.     Instances of this type are generated if one of the following events occurs:
  133.  
  134.     KeyPress, KeyRelease - for keyboard events
  135.     ButtonPress, ButtonRelease, Motion, Enter, Leave, MouseWheel - for mouse events
  136.     Visibility, Unmap, Map, Expose, FocusIn, FocusOut, Circulate,
  137.     Colormap, Gravity, Reparent, Property, Destroy, Activate,
  138.     Deactivate - for window events.
  139.  
  140.     If a callback function for one of these events is registered
  141.     using bind, bind_all, bind_class, or tag_bind, the callback is
  142.     called with an Event as first argument. It will have the
  143.     following attributes (in braces are the event types for which
  144.     the attribute is valid):
  145.  
  146.         serial - serial number of event
  147.     num - mouse button pressed (ButtonPress, ButtonRelease)
  148.     focus - whether the window has the focus (Enter, Leave)
  149.     height - height of the exposed window (Configure, Expose)
  150.     width - width of the exposed window (Configure, Expose)
  151.     keycode - keycode of the pressed key (KeyPress, KeyRelease)
  152.     state - state of the event as a number (ButtonPress, ButtonRelease,
  153.                             Enter, KeyPress, KeyRelease,
  154.                             Leave, Motion)
  155.     state - state as a string (Visibility)
  156.     time - when the event occurred
  157.     x - x-position of the mouse
  158.     y - y-position of the mouse
  159.     x_root - x-position of the mouse on the screen
  160.              (ButtonPress, ButtonRelease, KeyPress, KeyRelease, Motion)
  161.     y_root - y-position of the mouse on the screen
  162.              (ButtonPress, ButtonRelease, KeyPress, KeyRelease, Motion)
  163.     char - pressed character (KeyPress, KeyRelease)
  164.     send_event - see X/Windows documentation
  165.     keysym - keysym of the event as a string (KeyPress, KeyRelease)
  166.     keysym_num - keysym of the event as a number (KeyPress, KeyRelease)
  167.     type - type of the event as a number
  168.     widget - widget in which the event occurred
  169.     delta - delta of wheel movement (MouseWheel)
  170.     '''
  171.     pass
  172.  
  173. _support_default_root = 1
  174. _default_root = None
  175.  
  176. def NoDefaultRoot():
  177.     '''Inhibit setting of default root window.
  178.  
  179.     Call this function to inhibit that the first instance of
  180.     Tk is used for windows without an explicit parent window.
  181.     '''
  182.     global _support_default_root, _default_root
  183.     _support_default_root = 0
  184.     _default_root = None
  185.     del _default_root
  186.  
  187.  
  188. def _tkerror(err):
  189.     '''Internal function.'''
  190.     pass
  191.  
  192.  
  193. def _exit(code = '0'):
  194.     '''Internal function. Calling it will throw the exception SystemExit.'''
  195.     raise SystemExit, code
  196.  
  197. _varnum = 0
  198.  
  199. class Variable:
  200.     '''Class to define value holders for e.g. buttons.
  201.  
  202.     Subclasses StringVar, IntVar, DoubleVar, BooleanVar are specializations
  203.     that constrain the type of the value returned from get().'''
  204.     _default = ''
  205.     
  206.     def __init__(self, master = None, value = None, name = None):
  207.         '''Construct a variable
  208.  
  209.         MASTER can be given as master widget.
  210.         VALUE is an optional value (defaults to "")
  211.         NAME is an optional Tcl name (defaults to PY_VARnum).
  212.  
  213.         If NAME matches an existing variable and VALUE is omitted
  214.         then the existing value is retained.
  215.         '''
  216.         global _varnum
  217.         if not master:
  218.             master = _default_root
  219.         
  220.         self._master = master
  221.         self._tk = master.tk
  222.         if name:
  223.             self._name = name
  224.         else:
  225.             self._name = 'PY_VAR' + repr(_varnum)
  226.             _varnum += 1
  227.         if value != None:
  228.             self.set(value)
  229.         elif not self._tk.call('info', 'exists', self._name):
  230.             self.set(self._default)
  231.         
  232.  
  233.     
  234.     def __del__(self):
  235.         '''Unset the variable in Tcl.'''
  236.         self._tk.globalunsetvar(self._name)
  237.  
  238.     
  239.     def __str__(self):
  240.         '''Return the name of the variable in Tcl.'''
  241.         return self._name
  242.  
  243.     
  244.     def set(self, value):
  245.         '''Set the variable to VALUE.'''
  246.         return self._tk.globalsetvar(self._name, value)
  247.  
  248.     
  249.     def get(self):
  250.         '''Return value of variable.'''
  251.         return self._tk.globalgetvar(self._name)
  252.  
  253.     
  254.     def trace_variable(self, mode, callback):
  255.         '''Define a trace callback for the variable.
  256.  
  257.         MODE is one of "r", "w", "u" for read, write, undefine.
  258.         CALLBACK must be a function which is called when
  259.         the variable is read, written or undefined.
  260.  
  261.         Return the name of the callback.
  262.         '''
  263.         cbname = self._master._register(callback)
  264.         self._tk.call('trace', 'variable', self._name, mode, cbname)
  265.         return cbname
  266.  
  267.     trace = trace_variable
  268.     
  269.     def trace_vdelete(self, mode, cbname):
  270.         '''Delete the trace callback for a variable.
  271.  
  272.         MODE is one of "r", "w", "u" for read, write, undefine.
  273.         CBNAME is the name of the callback returned from trace_variable or trace.
  274.         '''
  275.         self._tk.call('trace', 'vdelete', self._name, mode, cbname)
  276.         self._master.deletecommand(cbname)
  277.  
  278.     
  279.     def trace_vinfo(self):
  280.         '''Return all trace callback information.'''
  281.         return map(self._tk.split, self._tk.splitlist(self._tk.call('trace', 'vinfo', self._name)))
  282.  
  283.     
  284.     def __eq__(self, other):
  285.         """Comparison for equality (==).
  286.  
  287.         Note: if the Variable's master matters to behavior
  288.         also compare self._master == other._master
  289.         """
  290.         if self.__class__.__name__ == other.__class__.__name__:
  291.             pass
  292.         return self._name == other._name
  293.  
  294.  
  295.  
  296. class StringVar(Variable):
  297.     '''Value holder for strings variables.'''
  298.     _default = ''
  299.     
  300.     def __init__(self, master = None, value = None, name = None):
  301.         '''Construct a string variable.
  302.  
  303.         MASTER can be given as master widget.
  304.         VALUE is an optional value (defaults to "")
  305.         NAME is an optional Tcl name (defaults to PY_VARnum).
  306.  
  307.         If NAME matches an existing variable and VALUE is omitted
  308.         then the existing value is retained.
  309.         '''
  310.         Variable.__init__(self, master, value, name)
  311.  
  312.     
  313.     def get(self):
  314.         '''Return value of variable as string.'''
  315.         value = self._tk.globalgetvar(self._name)
  316.         if isinstance(value, basestring):
  317.             return value
  318.         
  319.         return str(value)
  320.  
  321.  
  322.  
  323. class IntVar(Variable):
  324.     '''Value holder for integer variables.'''
  325.     _default = 0
  326.     
  327.     def __init__(self, master = None, value = None, name = None):
  328.         '''Construct an integer variable.
  329.  
  330.         MASTER can be given as master widget.
  331.         VALUE is an optional value (defaults to 0)
  332.         NAME is an optional Tcl name (defaults to PY_VARnum).
  333.  
  334.         If NAME matches an existing variable and VALUE is omitted
  335.         then the existing value is retained.
  336.         '''
  337.         Variable.__init__(self, master, value, name)
  338.  
  339.     
  340.     def set(self, value):
  341.         '''Set the variable to value, converting booleans to integers.'''
  342.         if isinstance(value, bool):
  343.             value = int(value)
  344.         
  345.         return Variable.set(self, value)
  346.  
  347.     
  348.     def get(self):
  349.         '''Return the value of the variable as an integer.'''
  350.         return getint(self._tk.globalgetvar(self._name))
  351.  
  352.  
  353.  
  354. class DoubleVar(Variable):
  355.     '''Value holder for float variables.'''
  356.     _default = 0
  357.     
  358.     def __init__(self, master = None, value = None, name = None):
  359.         '''Construct a float variable.
  360.  
  361.         MASTER can be given as master widget.
  362.         VALUE is an optional value (defaults to 0.0)
  363.         NAME is an optional Tcl name (defaults to PY_VARnum).
  364.  
  365.         If NAME matches an existing variable and VALUE is omitted
  366.         then the existing value is retained.
  367.         '''
  368.         Variable.__init__(self, master, value, name)
  369.  
  370.     
  371.     def get(self):
  372.         '''Return the value of the variable as a float.'''
  373.         return getdouble(self._tk.globalgetvar(self._name))
  374.  
  375.  
  376.  
  377. class BooleanVar(Variable):
  378.     '''Value holder for boolean variables.'''
  379.     _default = False
  380.     
  381.     def __init__(self, master = None, value = None, name = None):
  382.         '''Construct a boolean variable.
  383.  
  384.         MASTER can be given as master widget.
  385.         VALUE is an optional value (defaults to False)
  386.         NAME is an optional Tcl name (defaults to PY_VARnum).
  387.  
  388.         If NAME matches an existing variable and VALUE is omitted
  389.         then the existing value is retained.
  390.         '''
  391.         Variable.__init__(self, master, value, name)
  392.  
  393.     
  394.     def get(self):
  395.         '''Return the value of the variable as a bool.'''
  396.         return self._tk.getboolean(self._tk.globalgetvar(self._name))
  397.  
  398.  
  399.  
  400. def mainloop(n = 0):
  401.     '''Run the main loop of Tcl.'''
  402.     _default_root.tk.mainloop(n)
  403.  
  404. getint = int
  405. getdouble = float
  406.  
  407. def getboolean(s):
  408.     '''Convert true and false to integer values 1 and 0.'''
  409.     return _default_root.tk.getboolean(s)
  410.  
  411.  
  412. class Misc:
  413.     '''Internal class.
  414.  
  415.     Base class which defines methods common for interior widgets.'''
  416.     _tclCommands = None
  417.     
  418.     def destroy(self):
  419.         '''Internal function.
  420.  
  421.         Delete all Tcl commands created for
  422.         this widget in the Tcl interpreter.'''
  423.         if self._tclCommands is not None:
  424.             for name in self._tclCommands:
  425.                 self.tk.deletecommand(name)
  426.             
  427.             self._tclCommands = None
  428.         
  429.  
  430.     
  431.     def deletecommand(self, name):
  432.         '''Internal function.
  433.  
  434.         Delete the Tcl command provided in NAME.'''
  435.         self.tk.deletecommand(name)
  436.         
  437.         try:
  438.             self._tclCommands.remove(name)
  439.         except ValueError:
  440.             pass
  441.  
  442.  
  443.     
  444.     def tk_strictMotif(self, boolean = None):
  445.         '''Set Tcl internal variable, whether the look and feel
  446.         should adhere to Motif.
  447.  
  448.         A parameter of 1 means adhere to Motif (e.g. no color
  449.         change if mouse passes over slider).
  450.         Returns the set value.'''
  451.         return self.tk.getboolean(self.tk.call('set', 'tk_strictMotif', boolean))
  452.  
  453.     
  454.     def tk_bisque(self):
  455.         '''Change the color scheme to light brown as used in Tk 3.6 and before.'''
  456.         self.tk.call('tk_bisque')
  457.  
  458.     
  459.     def tk_setPalette(self, *args, **kw):
  460.         '''Set a new color scheme for all widget elements.
  461.  
  462.         A single color as argument will cause that all colors of Tk
  463.         widget elements are derived from this.
  464.         Alternatively several keyword parameters and its associated
  465.         colors can be given. The following keywords are valid:
  466.         activeBackground, foreground, selectColor,
  467.         activeForeground, highlightBackground, selectBackground,
  468.         background, highlightColor, selectForeground,
  469.         disabledForeground, insertBackground, troughColor.'''
  470.         self.tk.call(('tk_setPalette',) + _flatten(args) + _flatten(kw.items()))
  471.  
  472.     
  473.     def tk_menuBar(self, *args):
  474.         '''Do not use. Needed in Tk 3.6 and earlier.'''
  475.         pass
  476.  
  477.     
  478.     def wait_variable(self, name = 'PY_VAR'):
  479.         '''Wait until the variable is modified.
  480.  
  481.         A parameter of type IntVar, StringVar, DoubleVar or
  482.         BooleanVar must be given.'''
  483.         self.tk.call('tkwait', 'variable', name)
  484.  
  485.     waitvar = wait_variable
  486.     
  487.     def wait_window(self, window = None):
  488.         '''Wait until a WIDGET is destroyed.
  489.  
  490.         If no parameter is given self is used.'''
  491.         if window is None:
  492.             window = self
  493.         
  494.         self.tk.call('tkwait', 'window', window._w)
  495.  
  496.     
  497.     def wait_visibility(self, window = None):
  498.         '''Wait until the visibility of a WIDGET changes
  499.         (e.g. it appears).
  500.  
  501.         If no parameter is given self is used.'''
  502.         if window is None:
  503.             window = self
  504.         
  505.         self.tk.call('tkwait', 'visibility', window._w)
  506.  
  507.     
  508.     def setvar(self, name = 'PY_VAR', value = '1'):
  509.         '''Set Tcl variable NAME to VALUE.'''
  510.         self.tk.setvar(name, value)
  511.  
  512.     
  513.     def getvar(self, name = 'PY_VAR'):
  514.         '''Return value of Tcl variable NAME.'''
  515.         return self.tk.getvar(name)
  516.  
  517.     getint = int
  518.     getdouble = float
  519.     
  520.     def getboolean(self, s):
  521.         '''Return a boolean value for Tcl boolean values true and false given as parameter.'''
  522.         return self.tk.getboolean(s)
  523.  
  524.     
  525.     def focus_set(self):
  526.         '''Direct input focus to this widget.
  527.  
  528.         If the application currently does not have the focus
  529.         this widget will get the focus if the application gets
  530.         the focus through the window manager.'''
  531.         self.tk.call('focus', self._w)
  532.  
  533.     focus = focus_set
  534.     
  535.     def focus_force(self):
  536.         '''Direct input focus to this widget even if the
  537.         application does not have the focus. Use with
  538.         caution!'''
  539.         self.tk.call('focus', '-force', self._w)
  540.  
  541.     
  542.     def focus_get(self):
  543.         '''Return the widget which has currently the focus in the
  544.         application.
  545.  
  546.         Use focus_displayof to allow working with several
  547.         displays. Return None if application does not have
  548.         the focus.'''
  549.         name = self.tk.call('focus')
  550.         if name == 'none' or not name:
  551.             return None
  552.         
  553.         return self._nametowidget(name)
  554.  
  555.     
  556.     def focus_displayof(self):
  557.         '''Return the widget which has currently the focus on the
  558.         display where this widget is located.
  559.  
  560.         Return None if the application does not have the focus.'''
  561.         name = self.tk.call('focus', '-displayof', self._w)
  562.         if name == 'none' or not name:
  563.             return None
  564.         
  565.         return self._nametowidget(name)
  566.  
  567.     
  568.     def focus_lastfor(self):
  569.         '''Return the widget which would have the focus if top level
  570.         for this widget gets the focus from the window manager.'''
  571.         name = self.tk.call('focus', '-lastfor', self._w)
  572.         if name == 'none' or not name:
  573.             return None
  574.         
  575.         return self._nametowidget(name)
  576.  
  577.     
  578.     def tk_focusFollowsMouse(self):
  579.         '''The widget under mouse will get automatically focus. Can not
  580.         be disabled easily.'''
  581.         self.tk.call('tk_focusFollowsMouse')
  582.  
  583.     
  584.     def tk_focusNext(self):
  585.         '''Return the next widget in the focus order which follows
  586.         widget which has currently the focus.
  587.  
  588.         The focus order first goes to the next child, then to
  589.         the children of the child recursively and then to the
  590.         next sibling which is higher in the stacking order.  A
  591.         widget is omitted if it has the takefocus resource set
  592.         to 0.'''
  593.         name = self.tk.call('tk_focusNext', self._w)
  594.         if not name:
  595.             return None
  596.         
  597.         return self._nametowidget(name)
  598.  
  599.     
  600.     def tk_focusPrev(self):
  601.         '''Return previous widget in the focus order. See tk_focusNext for details.'''
  602.         name = self.tk.call('tk_focusPrev', self._w)
  603.         if not name:
  604.             return None
  605.         
  606.         return self._nametowidget(name)
  607.  
  608.     
  609.     def after(self, ms, func = None, *args):
  610.         '''Call function once after given time.
  611.  
  612.         MS specifies the time in milliseconds. FUNC gives the
  613.         function which shall be called. Additional parameters
  614.         are given as parameters to the function call.  Return
  615.         identifier to cancel scheduling with after_cancel.'''
  616.         pass
  617.  
  618.     
  619.     def after_idle(self, func, *args):
  620.         '''Call FUNC once if the Tcl main loop has no event to
  621.         process.
  622.  
  623.         Return an identifier to cancel the scheduling with
  624.         after_cancel.'''
  625.         return self.after('idle', func, *args)
  626.  
  627.     
  628.     def after_cancel(self, id):
  629.         '''Cancel scheduling of function identified with ID.
  630.  
  631.         Identifier returned by after or after_idle must be
  632.         given as first parameter.'''
  633.         
  634.         try:
  635.             data = self.tk.call('after', 'info', id)
  636.             script = self.tk.splitlist(data)[0]
  637.             self.deletecommand(script)
  638.         except TclError:
  639.             pass
  640.  
  641.         self.tk.call('after', 'cancel', id)
  642.  
  643.     
  644.     def bell(self, displayof = 0):
  645.         """Ring a display's bell."""
  646.         self.tk.call(('bell',) + self._displayof(displayof))
  647.  
  648.     
  649.     def clipboard_get(self, **kw):
  650.         """Retrieve data from the clipboard on window's display.
  651.  
  652.         The window keyword defaults to the root window of the Tkinter
  653.         application.
  654.  
  655.         The type keyword specifies the form in which the data is
  656.         to be returned and should be an atom name such as STRING
  657.         or FILE_NAME.  Type defaults to STRING.
  658.  
  659.         This command is equivalent to:
  660.  
  661.         selection_get(CLIPBOARD)
  662.         """
  663.         return self.tk.call(('clipboard', 'get') + self._options(kw))
  664.  
  665.     
  666.     def clipboard_clear(self, **kw):
  667.         '''Clear the data in the Tk clipboard.
  668.  
  669.         A widget specified for the optional displayof keyword
  670.         argument specifies the target display.'''
  671.         if not kw.has_key('displayof'):
  672.             kw['displayof'] = self._w
  673.         
  674.         self.tk.call(('clipboard', 'clear') + self._options(kw))
  675.  
  676.     
  677.     def clipboard_append(self, string, **kw):
  678.         '''Append STRING to the Tk clipboard.
  679.  
  680.         A widget specified at the optional displayof keyword
  681.         argument specifies the target display. The clipboard
  682.         can be retrieved with selection_get.'''
  683.         if not kw.has_key('displayof'):
  684.             kw['displayof'] = self._w
  685.         
  686.         self.tk.call(('clipboard', 'append') + self._options(kw) + ('--', string))
  687.  
  688.     
  689.     def grab_current(self):
  690.         '''Return widget which has currently the grab in this application
  691.         or None.'''
  692.         name = self.tk.call('grab', 'current', self._w)
  693.         if not name:
  694.             return None
  695.         
  696.         return self._nametowidget(name)
  697.  
  698.     
  699.     def grab_release(self):
  700.         '''Release grab for this widget if currently set.'''
  701.         self.tk.call('grab', 'release', self._w)
  702.  
  703.     
  704.     def grab_set(self):
  705.         '''Set grab for this widget.
  706.  
  707.         A grab directs all events to this and descendant
  708.         widgets in the application.'''
  709.         self.tk.call('grab', 'set', self._w)
  710.  
  711.     
  712.     def grab_set_global(self):
  713.         '''Set global grab for this widget.
  714.  
  715.         A global grab directs all events to this and
  716.         descendant widgets on the display. Use with caution -
  717.         other applications do not get events anymore.'''
  718.         self.tk.call('grab', 'set', '-global', self._w)
  719.  
  720.     
  721.     def grab_status(self):
  722.         '''Return None, "local" or "global" if this widget has
  723.         no, a local or a global grab.'''
  724.         status = self.tk.call('grab', 'status', self._w)
  725.         if status == 'none':
  726.             status = None
  727.         
  728.         return status
  729.  
  730.     
  731.     def lower(self, belowThis = None):
  732.         '''Lower this widget in the stacking order.'''
  733.         self.tk.call('lower', self._w, belowThis)
  734.  
  735.     
  736.     def option_add(self, pattern, value, priority = None):
  737.         '''Set a VALUE (second parameter) for an option
  738.         PATTERN (first parameter).
  739.  
  740.         An optional third parameter gives the numeric priority
  741.         (defaults to 80).'''
  742.         self.tk.call('option', 'add', pattern, value, priority)
  743.  
  744.     
  745.     def option_clear(self):
  746.         '''Clear the option database.
  747.  
  748.         It will be reloaded if option_add is called.'''
  749.         self.tk.call('option', 'clear')
  750.  
  751.     
  752.     def option_get(self, name, className):
  753.         '''Return the value for an option NAME for this widget
  754.         with CLASSNAME.
  755.  
  756.         Values with higher priority override lower values.'''
  757.         return self.tk.call('option', 'get', self._w, name, className)
  758.  
  759.     
  760.     def option_readfile(self, fileName, priority = None):
  761.         '''Read file FILENAME into the option database.
  762.  
  763.         An optional second parameter gives the numeric
  764.         priority.'''
  765.         self.tk.call('option', 'readfile', fileName, priority)
  766.  
  767.     
  768.     def selection_clear(self, **kw):
  769.         '''Clear the current X selection.'''
  770.         if not kw.has_key('displayof'):
  771.             kw['displayof'] = self._w
  772.         
  773.         self.tk.call(('selection', 'clear') + self._options(kw))
  774.  
  775.     
  776.     def selection_get(self, **kw):
  777.         '''Return the contents of the current X selection.
  778.  
  779.         A keyword parameter selection specifies the name of
  780.         the selection and defaults to PRIMARY.  A keyword
  781.         parameter displayof specifies a widget on the display
  782.         to use.'''
  783.         if not kw.has_key('displayof'):
  784.             kw['displayof'] = self._w
  785.         
  786.         return self.tk.call(('selection', 'get') + self._options(kw))
  787.  
  788.     
  789.     def selection_handle(self, command, **kw):
  790.         '''Specify a function COMMAND to call if the X
  791.         selection owned by this widget is queried by another
  792.         application.
  793.  
  794.         This function must return the contents of the
  795.         selection. The function will be called with the
  796.         arguments OFFSET and LENGTH which allows the chunking
  797.         of very long selections. The following keyword
  798.         parameters can be provided:
  799.         selection - name of the selection (default PRIMARY),
  800.         type - type of the selection (e.g. STRING, FILE_NAME).'''
  801.         name = self._register(command)
  802.         self.tk.call(('selection', 'handle') + self._options(kw) + (self._w, name))
  803.  
  804.     
  805.     def selection_own(self, **kw):
  806.         '''Become owner of X selection.
  807.  
  808.         A keyword parameter selection specifies the name of
  809.         the selection (default PRIMARY).'''
  810.         self.tk.call(('selection', 'own') + self._options(kw) + (self._w,))
  811.  
  812.     
  813.     def selection_own_get(self, **kw):
  814.         '''Return owner of X selection.
  815.  
  816.         The following keyword parameter can
  817.         be provided:
  818.         selection - name of the selection (default PRIMARY),
  819.         type - type of the selection (e.g. STRING, FILE_NAME).'''
  820.         if not kw.has_key('displayof'):
  821.             kw['displayof'] = self._w
  822.         
  823.         name = self.tk.call(('selection', 'own') + self._options(kw))
  824.         if not name:
  825.             return None
  826.         
  827.         return self._nametowidget(name)
  828.  
  829.     
  830.     def send(self, interp, cmd, *args):
  831.         '''Send Tcl command CMD to different interpreter INTERP to be executed.'''
  832.         return self.tk.call(('send', interp, cmd) + args)
  833.  
  834.     
  835.     def lower(self, belowThis = None):
  836.         '''Lower this widget in the stacking order.'''
  837.         self.tk.call('lower', self._w, belowThis)
  838.  
  839.     
  840.     def tkraise(self, aboveThis = None):
  841.         '''Raise this widget in the stacking order.'''
  842.         self.tk.call('raise', self._w, aboveThis)
  843.  
  844.     lift = tkraise
  845.     
  846.     def colormodel(self, value = None):
  847.         '''Useless. Not implemented in Tk.'''
  848.         return self.tk.call('tk', 'colormodel', self._w, value)
  849.  
  850.     
  851.     def winfo_atom(self, name, displayof = 0):
  852.         '''Return integer which represents atom NAME.'''
  853.         args = ('winfo', 'atom') + self._displayof(displayof) + (name,)
  854.         return getint(self.tk.call(args))
  855.  
  856.     
  857.     def winfo_atomname(self, id, displayof = 0):
  858.         '''Return name of atom with identifier ID.'''
  859.         args = ('winfo', 'atomname') + self._displayof(displayof) + (id,)
  860.         return self.tk.call(args)
  861.  
  862.     
  863.     def winfo_cells(self):
  864.         '''Return number of cells in the colormap for this widget.'''
  865.         return getint(self.tk.call('winfo', 'cells', self._w))
  866.  
  867.     
  868.     def winfo_children(self):
  869.         '''Return a list of all widgets which are children of this widget.'''
  870.         result = []
  871.         for child in self.tk.splitlist(self.tk.call('winfo', 'children', self._w)):
  872.             
  873.             try:
  874.                 result.append(self._nametowidget(child))
  875.             continue
  876.             except KeyError:
  877.                 continue
  878.             
  879.  
  880.         
  881.         return result
  882.  
  883.     
  884.     def winfo_class(self):
  885.         '''Return window class name of this widget.'''
  886.         return self.tk.call('winfo', 'class', self._w)
  887.  
  888.     
  889.     def winfo_colormapfull(self):
  890.         '''Return true if at the last color request the colormap was full.'''
  891.         return self.tk.getboolean(self.tk.call('winfo', 'colormapfull', self._w))
  892.  
  893.     
  894.     def winfo_containing(self, rootX, rootY, displayof = 0):
  895.         '''Return the widget which is at the root coordinates ROOTX, ROOTY.'''
  896.         args = ('winfo', 'containing') + self._displayof(displayof) + (rootX, rootY)
  897.         name = self.tk.call(args)
  898.         if not name:
  899.             return None
  900.         
  901.         return self._nametowidget(name)
  902.  
  903.     
  904.     def winfo_depth(self):
  905.         '''Return the number of bits per pixel.'''
  906.         return getint(self.tk.call('winfo', 'depth', self._w))
  907.  
  908.     
  909.     def winfo_exists(self):
  910.         '''Return true if this widget exists.'''
  911.         return getint(self.tk.call('winfo', 'exists', self._w))
  912.  
  913.     
  914.     def winfo_fpixels(self, number):
  915.         '''Return the number of pixels for the given distance NUMBER
  916.         (e.g. "3c") as float.'''
  917.         return getdouble(self.tk.call('winfo', 'fpixels', self._w, number))
  918.  
  919.     
  920.     def winfo_geometry(self):
  921.         '''Return geometry string for this widget in the form "widthxheight+X+Y".'''
  922.         return self.tk.call('winfo', 'geometry', self._w)
  923.  
  924.     
  925.     def winfo_height(self):
  926.         '''Return height of this widget.'''
  927.         return getint(self.tk.call('winfo', 'height', self._w))
  928.  
  929.     
  930.     def winfo_id(self):
  931.         '''Return identifier ID for this widget.'''
  932.         return self.tk.getint(self.tk.call('winfo', 'id', self._w))
  933.  
  934.     
  935.     def winfo_interps(self, displayof = 0):
  936.         '''Return the name of all Tcl interpreters for this display.'''
  937.         args = ('winfo', 'interps') + self._displayof(displayof)
  938.         return self.tk.splitlist(self.tk.call(args))
  939.  
  940.     
  941.     def winfo_ismapped(self):
  942.         '''Return true if this widget is mapped.'''
  943.         return getint(self.tk.call('winfo', 'ismapped', self._w))
  944.  
  945.     
  946.     def winfo_manager(self):
  947.         '''Return the window mananger name for this widget.'''
  948.         return self.tk.call('winfo', 'manager', self._w)
  949.  
  950.     
  951.     def winfo_name(self):
  952.         '''Return the name of this widget.'''
  953.         return self.tk.call('winfo', 'name', self._w)
  954.  
  955.     
  956.     def winfo_parent(self):
  957.         '''Return the name of the parent of this widget.'''
  958.         return self.tk.call('winfo', 'parent', self._w)
  959.  
  960.     
  961.     def winfo_pathname(self, id, displayof = 0):
  962.         '''Return the pathname of the widget given by ID.'''
  963.         args = ('winfo', 'pathname') + self._displayof(displayof) + (id,)
  964.         return self.tk.call(args)
  965.  
  966.     
  967.     def winfo_pixels(self, number):
  968.         '''Rounded integer value of winfo_fpixels.'''
  969.         return getint(self.tk.call('winfo', 'pixels', self._w, number))
  970.  
  971.     
  972.     def winfo_pointerx(self):
  973.         '''Return the x coordinate of the pointer on the root window.'''
  974.         return getint(self.tk.call('winfo', 'pointerx', self._w))
  975.  
  976.     
  977.     def winfo_pointerxy(self):
  978.         '''Return a tuple of x and y coordinates of the pointer on the root window.'''
  979.         return self._getints(self.tk.call('winfo', 'pointerxy', self._w))
  980.  
  981.     
  982.     def winfo_pointery(self):
  983.         '''Return the y coordinate of the pointer on the root window.'''
  984.         return getint(self.tk.call('winfo', 'pointery', self._w))
  985.  
  986.     
  987.     def winfo_reqheight(self):
  988.         '''Return requested height of this widget.'''
  989.         return getint(self.tk.call('winfo', 'reqheight', self._w))
  990.  
  991.     
  992.     def winfo_reqwidth(self):
  993.         '''Return requested width of this widget.'''
  994.         return getint(self.tk.call('winfo', 'reqwidth', self._w))
  995.  
  996.     
  997.     def winfo_rgb(self, color):
  998.         '''Return tuple of decimal values for red, green, blue for
  999.         COLOR in this widget.'''
  1000.         return self._getints(self.tk.call('winfo', 'rgb', self._w, color))
  1001.  
  1002.     
  1003.     def winfo_rootx(self):
  1004.         '''Return x coordinate of upper left corner of this widget on the
  1005.         root window.'''
  1006.         return getint(self.tk.call('winfo', 'rootx', self._w))
  1007.  
  1008.     
  1009.     def winfo_rooty(self):
  1010.         '''Return y coordinate of upper left corner of this widget on the
  1011.         root window.'''
  1012.         return getint(self.tk.call('winfo', 'rooty', self._w))
  1013.  
  1014.     
  1015.     def winfo_screen(self):
  1016.         '''Return the screen name of this widget.'''
  1017.         return self.tk.call('winfo', 'screen', self._w)
  1018.  
  1019.     
  1020.     def winfo_screencells(self):
  1021.         '''Return the number of the cells in the colormap of the screen
  1022.         of this widget.'''
  1023.         return getint(self.tk.call('winfo', 'screencells', self._w))
  1024.  
  1025.     
  1026.     def winfo_screendepth(self):
  1027.         '''Return the number of bits per pixel of the root window of the
  1028.         screen of this widget.'''
  1029.         return getint(self.tk.call('winfo', 'screendepth', self._w))
  1030.  
  1031.     
  1032.     def winfo_screenheight(self):
  1033.         '''Return the number of pixels of the height of the screen of this widget
  1034.         in pixel.'''
  1035.         return getint(self.tk.call('winfo', 'screenheight', self._w))
  1036.  
  1037.     
  1038.     def winfo_screenmmheight(self):
  1039.         '''Return the number of pixels of the height of the screen of
  1040.         this widget in mm.'''
  1041.         return getint(self.tk.call('winfo', 'screenmmheight', self._w))
  1042.  
  1043.     
  1044.     def winfo_screenmmwidth(self):
  1045.         '''Return the number of pixels of the width of the screen of
  1046.         this widget in mm.'''
  1047.         return getint(self.tk.call('winfo', 'screenmmwidth', self._w))
  1048.  
  1049.     
  1050.     def winfo_screenvisual(self):
  1051.         '''Return one of the strings directcolor, grayscale, pseudocolor,
  1052.         staticcolor, staticgray, or truecolor for the default
  1053.         colormodel of this screen.'''
  1054.         return self.tk.call('winfo', 'screenvisual', self._w)
  1055.  
  1056.     
  1057.     def winfo_screenwidth(self):
  1058.         '''Return the number of pixels of the width of the screen of
  1059.         this widget in pixel.'''
  1060.         return getint(self.tk.call('winfo', 'screenwidth', self._w))
  1061.  
  1062.     
  1063.     def winfo_server(self):
  1064.         '''Return information of the X-Server of the screen of this widget in
  1065.         the form "XmajorRminor vendor vendorVersion".'''
  1066.         return self.tk.call('winfo', 'server', self._w)
  1067.  
  1068.     
  1069.     def winfo_toplevel(self):
  1070.         '''Return the toplevel widget of this widget.'''
  1071.         return self._nametowidget(self.tk.call('winfo', 'toplevel', self._w))
  1072.  
  1073.     
  1074.     def winfo_viewable(self):
  1075.         '''Return true if the widget and all its higher ancestors are mapped.'''
  1076.         return getint(self.tk.call('winfo', 'viewable', self._w))
  1077.  
  1078.     
  1079.     def winfo_visual(self):
  1080.         '''Return one of the strings directcolor, grayscale, pseudocolor,
  1081.         staticcolor, staticgray, or truecolor for the
  1082.         colormodel of this widget.'''
  1083.         return self.tk.call('winfo', 'visual', self._w)
  1084.  
  1085.     
  1086.     def winfo_visualid(self):
  1087.         '''Return the X identifier for the visual for this widget.'''
  1088.         return self.tk.call('winfo', 'visualid', self._w)
  1089.  
  1090.     
  1091.     def winfo_visualsavailable(self, includeids = 0):
  1092.         '''Return a list of all visuals available for the screen
  1093.         of this widget.
  1094.  
  1095.         Each item in the list consists of a visual name (see winfo_visual), a
  1096.         depth and if INCLUDEIDS=1 is given also the X identifier.'''
  1097.         if not includeids or 'includeids':
  1098.             pass
  1099.         data = self.tk.split(self.tk.call('winfo', 'visualsavailable', self._w, None))
  1100.         if type(data) is StringType:
  1101.             data = [
  1102.                 self.tk.split(data)]
  1103.         
  1104.         return map(self._Misc__winfo_parseitem, data)
  1105.  
  1106.     
  1107.     def __winfo_parseitem(self, t):
  1108.         '''Internal function.'''
  1109.         return t[:1] + tuple(map(self._Misc__winfo_getint, t[1:]))
  1110.  
  1111.     
  1112.     def __winfo_getint(self, x):
  1113.         '''Internal function.'''
  1114.         return int(x, 0)
  1115.  
  1116.     
  1117.     def winfo_vrootheight(self):
  1118.         '''Return the height of the virtual root window associated with this
  1119.         widget in pixels. If there is no virtual root window return the
  1120.         height of the screen.'''
  1121.         return getint(self.tk.call('winfo', 'vrootheight', self._w))
  1122.  
  1123.     
  1124.     def winfo_vrootwidth(self):
  1125.         '''Return the width of the virtual root window associated with this
  1126.         widget in pixel. If there is no virtual root window return the
  1127.         width of the screen.'''
  1128.         return getint(self.tk.call('winfo', 'vrootwidth', self._w))
  1129.  
  1130.     
  1131.     def winfo_vrootx(self):
  1132.         '''Return the x offset of the virtual root relative to the root
  1133.         window of the screen of this widget.'''
  1134.         return getint(self.tk.call('winfo', 'vrootx', self._w))
  1135.  
  1136.     
  1137.     def winfo_vrooty(self):
  1138.         '''Return the y offset of the virtual root relative to the root
  1139.         window of the screen of this widget.'''
  1140.         return getint(self.tk.call('winfo', 'vrooty', self._w))
  1141.  
  1142.     
  1143.     def winfo_width(self):
  1144.         '''Return the width of this widget.'''
  1145.         return getint(self.tk.call('winfo', 'width', self._w))
  1146.  
  1147.     
  1148.     def winfo_x(self):
  1149.         '''Return the x coordinate of the upper left corner of this widget
  1150.         in the parent.'''
  1151.         return getint(self.tk.call('winfo', 'x', self._w))
  1152.  
  1153.     
  1154.     def winfo_y(self):
  1155.         '''Return the y coordinate of the upper left corner of this widget
  1156.         in the parent.'''
  1157.         return getint(self.tk.call('winfo', 'y', self._w))
  1158.  
  1159.     
  1160.     def update(self):
  1161.         '''Enter event loop until all pending events have been processed by Tcl.'''
  1162.         self.tk.call('update')
  1163.  
  1164.     
  1165.     def update_idletasks(self):
  1166.         '''Enter event loop until all idle callbacks have been called. This
  1167.         will update the display of windows but not process events caused by
  1168.         the user.'''
  1169.         self.tk.call('update', 'idletasks')
  1170.  
  1171.     
  1172.     def bindtags(self, tagList = None):
  1173.         '''Set or get the list of bindtags for this widget.
  1174.  
  1175.         With no argument return the list of all bindtags associated with
  1176.         this widget. With a list of strings as argument the bindtags are
  1177.         set to this list. The bindtags determine in which order events are
  1178.         processed (see bind).'''
  1179.         if tagList is None:
  1180.             return self.tk.splitlist(self.tk.call('bindtags', self._w))
  1181.         else:
  1182.             self.tk.call('bindtags', self._w, tagList)
  1183.  
  1184.     
  1185.     def _bind(self, what, sequence, func, add, needcleanup = 1):
  1186.         '''Internal function.'''
  1187.         if type(func) is StringType:
  1188.             self.tk.call(what + (sequence, func))
  1189.         elif func:
  1190.             funcid = self._register(func, self._substitute, needcleanup)
  1191.             if not add or '+':
  1192.                 pass
  1193.             cmd = '%sif {"[%s %s]" == "break"} break\n' % ('', funcid, self._subst_format_str)
  1194.             self.tk.call(what + (sequence, cmd))
  1195.             return funcid
  1196.         elif sequence:
  1197.             return self.tk.call(what + (sequence,))
  1198.         else:
  1199.             return self.tk.splitlist(self.tk.call(what))
  1200.  
  1201.     
  1202.     def bind(self, sequence = None, func = None, add = None):
  1203.         '''Bind to this widget at event SEQUENCE a call to function FUNC.
  1204.  
  1205.         SEQUENCE is a string of concatenated event
  1206.         patterns. An event pattern is of the form
  1207.         <MODIFIER-MODIFIER-TYPE-DETAIL> where MODIFIER is one
  1208.         of Control, Mod2, M2, Shift, Mod3, M3, Lock, Mod4, M4,
  1209.         Button1, B1, Mod5, M5 Button2, B2, Meta, M, Button3,
  1210.         B3, Alt, Button4, B4, Double, Button5, B5 Triple,
  1211.         Mod1, M1. TYPE is one of Activate, Enter, Map,
  1212.         ButtonPress, Button, Expose, Motion, ButtonRelease
  1213.         FocusIn, MouseWheel, Circulate, FocusOut, Property,
  1214.         Colormap, Gravity Reparent, Configure, KeyPress, Key,
  1215.         Unmap, Deactivate, KeyRelease Visibility, Destroy,
  1216.         Leave and DETAIL is the button number for ButtonPress,
  1217.         ButtonRelease and DETAIL is the Keysym for KeyPress and
  1218.         KeyRelease. Examples are
  1219.         <Control-Button-1> for pressing Control and mouse button 1 or
  1220.         <Alt-A> for pressing A and the Alt key (KeyPress can be omitted).
  1221.         An event pattern can also be a virtual event of the form
  1222.         <<AString>> where AString can be arbitrary. This
  1223.         event can be generated by event_generate.
  1224.         If events are concatenated they must appear shortly
  1225.         after each other.
  1226.  
  1227.         FUNC will be called if the event sequence occurs with an
  1228.         instance of Event as argument. If the return value of FUNC is
  1229.         "break" no further bound function is invoked.
  1230.  
  1231.         An additional boolean parameter ADD specifies whether FUNC will
  1232.         be called additionally to the other bound function or whether
  1233.         it will replace the previous function.
  1234.  
  1235.         Bind will return an identifier to allow deletion of the bound function with
  1236.         unbind without memory leak.
  1237.  
  1238.         If FUNC or SEQUENCE is omitted the bound function or list
  1239.         of bound events are returned.'''
  1240.         return self._bind(('bind', self._w), sequence, func, add)
  1241.  
  1242.     
  1243.     def unbind(self, sequence, funcid = None):
  1244.         '''Unbind for this widget for event SEQUENCE  the
  1245.         function identified with FUNCID.'''
  1246.         self.tk.call('bind', self._w, sequence, '')
  1247.         if funcid:
  1248.             self.deletecommand(funcid)
  1249.         
  1250.  
  1251.     
  1252.     def bind_all(self, sequence = None, func = None, add = None):
  1253.         '''Bind to all widgets at an event SEQUENCE a call to function FUNC.
  1254.         An additional boolean parameter ADD specifies whether FUNC will
  1255.         be called additionally to the other bound function or whether
  1256.         it will replace the previous function. See bind for the return value.'''
  1257.         return self._bind(('bind', 'all'), sequence, func, add, 0)
  1258.  
  1259.     
  1260.     def unbind_all(self, sequence):
  1261.         '''Unbind for all widgets for event SEQUENCE all functions.'''
  1262.         self.tk.call('bind', 'all', sequence, '')
  1263.  
  1264.     
  1265.     def bind_class(self, className, sequence = None, func = None, add = None):
  1266.         '''Bind to widgets with bindtag CLASSNAME at event
  1267.         SEQUENCE a call of function FUNC. An additional
  1268.         boolean parameter ADD specifies whether FUNC will be
  1269.         called additionally to the other bound function or
  1270.         whether it will replace the previous function. See bind for
  1271.         the return value.'''
  1272.         return self._bind(('bind', className), sequence, func, add, 0)
  1273.  
  1274.     
  1275.     def unbind_class(self, className, sequence):
  1276.         '''Unbind for a all widgets with bindtag CLASSNAME for event SEQUENCE
  1277.         all functions.'''
  1278.         self.tk.call('bind', className, sequence, '')
  1279.  
  1280.     
  1281.     def mainloop(self, n = 0):
  1282.         '''Call the mainloop of Tk.'''
  1283.         self.tk.mainloop(n)
  1284.  
  1285.     
  1286.     def quit(self):
  1287.         '''Quit the Tcl interpreter. All widgets will be destroyed.'''
  1288.         self.tk.quit()
  1289.  
  1290.     
  1291.     def _getints(self, string):
  1292.         '''Internal function.'''
  1293.         if string:
  1294.             return tuple(map(getint, self.tk.splitlist(string)))
  1295.         
  1296.  
  1297.     
  1298.     def _getdoubles(self, string):
  1299.         '''Internal function.'''
  1300.         if string:
  1301.             return tuple(map(getdouble, self.tk.splitlist(string)))
  1302.         
  1303.  
  1304.     
  1305.     def _getboolean(self, string):
  1306.         '''Internal function.'''
  1307.         if string:
  1308.             return self.tk.getboolean(string)
  1309.         
  1310.  
  1311.     
  1312.     def _displayof(self, displayof):
  1313.         '''Internal function.'''
  1314.         if displayof:
  1315.             return ('-displayof', displayof)
  1316.         
  1317.         if displayof is None:
  1318.             return ('-displayof', self._w)
  1319.         
  1320.         return ()
  1321.  
  1322.     
  1323.     def _options(self, cnf, kw = None):
  1324.         '''Internal function.'''
  1325.         if kw:
  1326.             cnf = _cnfmerge((cnf, kw))
  1327.         else:
  1328.             cnf = _cnfmerge(cnf)
  1329.         res = ()
  1330.         for k, v in cnf.items():
  1331.             if v is not None:
  1332.                 if k[-1] == '_':
  1333.                     k = k[:-1]
  1334.                 
  1335.                 if callable(v):
  1336.                     v = self._register(v)
  1337.                 elif isinstance(v, (tuple, list)):
  1338.                     nv = []
  1339.                     for item in v:
  1340.                         if not isinstance(item, (basestring, int)):
  1341.                             break
  1342.                             continue
  1343.                         if isinstance(item, int):
  1344.                             nv.append('%d' % item)
  1345.                             continue
  1346.                         None(nv.append if ' ' in item else '%s' % item)
  1347.                     else:
  1348.                         v = ' '.join(nv)
  1349.                 
  1350.                 res = res + ('-' + k, v)
  1351.                 continue
  1352.         
  1353.         return res
  1354.  
  1355.     
  1356.     def nametowidget(self, name):
  1357.         '''Return the Tkinter instance of a widget identified by
  1358.         its Tcl name NAME.'''
  1359.         name = str(name).split('.')
  1360.         w = self
  1361.         if not name[0]:
  1362.             w = w._root()
  1363.             name = name[1:]
  1364.         
  1365.         for n in name:
  1366.             if not n:
  1367.                 break
  1368.             
  1369.             w = w.children[n]
  1370.         
  1371.         return w
  1372.  
  1373.     _nametowidget = nametowidget
  1374.     
  1375.     def _register(self, func, subst = None, needcleanup = 1):
  1376.         '''Return a newly created Tcl function. If this
  1377.         function is called, the Python function FUNC will
  1378.         be executed. An optional function SUBST can
  1379.         be given which will be executed before FUNC.'''
  1380.         f = CallWrapper(func, subst, self).__call__
  1381.         name = repr(id(f))
  1382.         
  1383.         try:
  1384.             func = func.im_func
  1385.         except AttributeError:
  1386.             pass
  1387.  
  1388.         
  1389.         try:
  1390.             name = name + func.__name__
  1391.         except AttributeError:
  1392.             pass
  1393.  
  1394.         self.tk.createcommand(name, f)
  1395.         if needcleanup:
  1396.             if self._tclCommands is None:
  1397.                 self._tclCommands = []
  1398.             
  1399.             self._tclCommands.append(name)
  1400.         
  1401.         return name
  1402.  
  1403.     register = _register
  1404.     
  1405.     def _root(self):
  1406.         '''Internal function.'''
  1407.         w = self
  1408.         while w.master:
  1409.             w = w.master
  1410.         return w
  1411.  
  1412.     _subst_format = ('%#', '%b', '%f', '%h', '%k', '%s', '%t', '%w', '%x', '%y', '%A', '%E', '%K', '%N', '%W', '%T', '%X', '%Y', '%D')
  1413.     _subst_format_str = ' '.join(_subst_format)
  1414.     
  1415.     def _substitute(self, *args):
  1416.         '''Internal function.'''
  1417.         if len(args) != len(self._subst_format):
  1418.             return args
  1419.         
  1420.         getboolean = self.tk.getboolean
  1421.         getint = int
  1422.         
  1423.         def getint_event(s):
  1424.             '''Tk changed behavior in 8.4.2, returning "??" rather more often.'''
  1425.             
  1426.             try:
  1427.                 return int(s)
  1428.             except ValueError:
  1429.                 return s
  1430.  
  1431.  
  1432.         (nsign, b, f, h, k, s, t, w, x, y, A, E, K, N, W, T, X, Y, D) = args
  1433.         e = Event()
  1434.         e.serial = getint(nsign)
  1435.         e.num = getint_event(b)
  1436.         
  1437.         try:
  1438.             e.focus = getboolean(f)
  1439.         except TclError:
  1440.             pass
  1441.  
  1442.         e.height = getint_event(h)
  1443.         e.keycode = getint_event(k)
  1444.         e.state = getint_event(s)
  1445.         e.time = getint_event(t)
  1446.         e.width = getint_event(w)
  1447.         e.x = getint_event(x)
  1448.         e.y = getint_event(y)
  1449.         e.char = A
  1450.         
  1451.         try:
  1452.             e.send_event = getboolean(E)
  1453.         except TclError:
  1454.             pass
  1455.  
  1456.         e.keysym = K
  1457.         e.keysym_num = getint_event(N)
  1458.         e.type = T
  1459.         
  1460.         try:
  1461.             e.widget = self._nametowidget(W)
  1462.         except KeyError:
  1463.             e.widget = W
  1464.  
  1465.         e.x_root = getint_event(X)
  1466.         e.y_root = getint_event(Y)
  1467.         
  1468.         try:
  1469.             e.delta = getint(D)
  1470.         except ValueError:
  1471.             e.delta = 0
  1472.  
  1473.         return (e,)
  1474.  
  1475.     
  1476.     def _report_exception(self):
  1477.         '''Internal function.'''
  1478.         import sys as sys
  1479.         exc = sys.exc_type
  1480.         val = sys.exc_value
  1481.         tb = sys.exc_traceback
  1482.         root = self._root()
  1483.         root.report_callback_exception(exc, val, tb)
  1484.  
  1485.     
  1486.     def _configure(self, cmd, cnf, kw):
  1487.         '''Internal function.'''
  1488.         if kw:
  1489.             cnf = _cnfmerge((cnf, kw))
  1490.         elif cnf:
  1491.             cnf = _cnfmerge(cnf)
  1492.         
  1493.         if cnf is None:
  1494.             cnf = { }
  1495.             for x in self.tk.split(self.tk.call(_flatten((self._w, cmd)))):
  1496.                 cnf[x[0][1:]] = (x[0][1:],) + x[1:]
  1497.             
  1498.             return cnf
  1499.         
  1500.         if type(cnf) is StringType:
  1501.             x = self.tk.split(self.tk.call(_flatten((self._w, cmd, '-' + cnf))))
  1502.             return (x[0][1:],) + x[1:]
  1503.         
  1504.         self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
  1505.  
  1506.     
  1507.     def configure(self, cnf = None, **kw):
  1508.         '''Configure resources of a widget.
  1509.  
  1510.         The values for resources are specified as keyword
  1511.         arguments. To get an overview about
  1512.         the allowed keyword arguments call the method keys.
  1513.         '''
  1514.         return self._configure('configure', cnf, kw)
  1515.  
  1516.     config = configure
  1517.     
  1518.     def cget(self, key):
  1519.         '''Return the resource value for a KEY given as string.'''
  1520.         return self.tk.call(self._w, 'cget', '-' + key)
  1521.  
  1522.     __getitem__ = cget
  1523.     
  1524.     def __setitem__(self, key, value):
  1525.         self.configure({
  1526.             key: value })
  1527.  
  1528.     
  1529.     def keys(self):
  1530.         '''Return a list of all resource names of this widget.'''
  1531.         return map((lambda x: x[0][1:]), self.tk.split(self.tk.call(self._w, 'configure')))
  1532.  
  1533.     
  1534.     def __str__(self):
  1535.         '''Return the window path name of this widget.'''
  1536.         return self._w
  1537.  
  1538.     _noarg_ = [
  1539.         '_noarg_']
  1540.     
  1541.     def pack_propagate(self, flag = _noarg_):
  1542.         '''Set or get the status for propagation of geometry information.
  1543.  
  1544.         A boolean argument specifies whether the geometry information
  1545.         of the slaves will determine the size of this widget. If no argument
  1546.         is given the current setting will be returned.
  1547.         '''
  1548.         if flag is Misc._noarg_:
  1549.             return self._getboolean(self.tk.call('pack', 'propagate', self._w))
  1550.         else:
  1551.             self.tk.call('pack', 'propagate', self._w, flag)
  1552.  
  1553.     propagate = pack_propagate
  1554.     
  1555.     def pack_slaves(self):
  1556.         '''Return a list of all slaves of this widget
  1557.         in its packing order.'''
  1558.         return map(self._nametowidget, self.tk.splitlist(self.tk.call('pack', 'slaves', self._w)))
  1559.  
  1560.     slaves = pack_slaves
  1561.     
  1562.     def place_slaves(self):
  1563.         '''Return a list of all slaves of this widget
  1564.         in its packing order.'''
  1565.         return map(self._nametowidget, self.tk.splitlist(self.tk.call('place', 'slaves', self._w)))
  1566.  
  1567.     
  1568.     def grid_bbox(self, column = None, row = None, col2 = None, row2 = None):
  1569.         '''Return a tuple of integer coordinates for the bounding
  1570.         box of this widget controlled by the geometry manager grid.
  1571.  
  1572.         If COLUMN, ROW is given the bounding box applies from
  1573.         the cell with row and column 0 to the specified
  1574.         cell. If COL2 and ROW2 are given the bounding box
  1575.         starts at that cell.
  1576.  
  1577.         The returned integers specify the offset of the upper left
  1578.         corner in the master widget and the width and height.
  1579.         '''
  1580.         args = ('grid', 'bbox', self._w)
  1581.         if column is not None and row is not None:
  1582.             args = args + (column, row)
  1583.         
  1584.         if col2 is not None and row2 is not None:
  1585.             args = args + (col2, row2)
  1586.         
  1587.         if not self._getints(self.tk.call(*args)):
  1588.             pass
  1589.  
  1590.     bbox = grid_bbox
  1591.     
  1592.     def _grid_configure(self, command, index, cnf, kw):
  1593.         '''Internal function.'''
  1594.         if type(cnf) is StringType and not kw:
  1595.             if cnf[-1:] == '_':
  1596.                 cnf = cnf[:-1]
  1597.             
  1598.             if cnf[:1] != '-':
  1599.                 cnf = '-' + cnf
  1600.             
  1601.             options = (cnf,)
  1602.         else:
  1603.             options = self._options(cnf, kw)
  1604.         if not options:
  1605.             res = self.tk.call('grid', command, self._w, index)
  1606.             words = self.tk.splitlist(res)
  1607.             dict = { }
  1608.             for i in range(0, len(words), 2):
  1609.                 key = words[i][1:]
  1610.                 value = words[i + 1]
  1611.                 if not value:
  1612.                     value = None
  1613.                 elif '.' in value:
  1614.                     value = getdouble(value)
  1615.                 else:
  1616.                     value = getint(value)
  1617.                 dict[key] = value
  1618.             
  1619.             return dict
  1620.         
  1621.         res = self.tk.call(('grid', command, self._w, index) + options)
  1622.         if len(options) == 1:
  1623.             if not res:
  1624.                 return None
  1625.             
  1626.             if '.' in res:
  1627.                 return getdouble(res)
  1628.             
  1629.             return getint(res)
  1630.         
  1631.  
  1632.     
  1633.     def grid_columnconfigure(self, index, cnf = { }, **kw):
  1634.         '''Configure column INDEX of a grid.
  1635.  
  1636.         Valid resources are minsize (minimum size of the column),
  1637.         weight (how much does additional space propagate to this column)
  1638.         and pad (how much space to let additionally).'''
  1639.         return self._grid_configure('columnconfigure', index, cnf, kw)
  1640.  
  1641.     columnconfigure = grid_columnconfigure
  1642.     
  1643.     def grid_location(self, x, y):
  1644.         '''Return a tuple of column and row which identify the cell
  1645.         at which the pixel at position X and Y inside the master
  1646.         widget is located.'''
  1647.         if not self._getints(self.tk.call('grid', 'location', self._w, x, y)):
  1648.             pass
  1649.  
  1650.     
  1651.     def grid_propagate(self, flag = _noarg_):
  1652.         '''Set or get the status for propagation of geometry information.
  1653.  
  1654.         A boolean argument specifies whether the geometry information
  1655.         of the slaves will determine the size of this widget. If no argument
  1656.         is given, the current setting will be returned.
  1657.         '''
  1658.         if flag is Misc._noarg_:
  1659.             return self._getboolean(self.tk.call('grid', 'propagate', self._w))
  1660.         else:
  1661.             self.tk.call('grid', 'propagate', self._w, flag)
  1662.  
  1663.     
  1664.     def grid_rowconfigure(self, index, cnf = { }, **kw):
  1665.         '''Configure row INDEX of a grid.
  1666.  
  1667.         Valid resources are minsize (minimum size of the row),
  1668.         weight (how much does additional space propagate to this row)
  1669.         and pad (how much space to let additionally).'''
  1670.         return self._grid_configure('rowconfigure', index, cnf, kw)
  1671.  
  1672.     rowconfigure = grid_rowconfigure
  1673.     
  1674.     def grid_size(self):
  1675.         '''Return a tuple of the number of column and rows in the grid.'''
  1676.         if not self._getints(self.tk.call('grid', 'size', self._w)):
  1677.             pass
  1678.  
  1679.     size = grid_size
  1680.     
  1681.     def grid_slaves(self, row = None, column = None):
  1682.         '''Return a list of all slaves of this widget
  1683.         in its packing order.'''
  1684.         args = ()
  1685.         if row is not None:
  1686.             args = args + ('-row', row)
  1687.         
  1688.         if column is not None:
  1689.             args = args + ('-column', column)
  1690.         
  1691.         return map(self._nametowidget, self.tk.splitlist(self.tk.call(('grid', 'slaves', self._w) + args)))
  1692.  
  1693.     
  1694.     def event_add(self, virtual, *sequences):
  1695.         '''Bind a virtual event VIRTUAL (of the form <<Name>>)
  1696.         to an event SEQUENCE such that the virtual event is triggered
  1697.         whenever SEQUENCE occurs.'''
  1698.         args = ('event', 'add', virtual) + sequences
  1699.         self.tk.call(args)
  1700.  
  1701.     
  1702.     def event_delete(self, virtual, *sequences):
  1703.         '''Unbind a virtual event VIRTUAL from SEQUENCE.'''
  1704.         args = ('event', 'delete', virtual) + sequences
  1705.         self.tk.call(args)
  1706.  
  1707.     
  1708.     def event_generate(self, sequence, **kw):
  1709.         '''Generate an event SEQUENCE. Additional
  1710.         keyword arguments specify parameter of the event
  1711.         (e.g. x, y, rootx, rooty).'''
  1712.         args = ('event', 'generate', self._w, sequence)
  1713.         for k, v in kw.items():
  1714.             args = args + ('-%s' % k, str(v))
  1715.         
  1716.         self.tk.call(args)
  1717.  
  1718.     
  1719.     def event_info(self, virtual = None):
  1720.         '''Return a list of all virtual events or the information
  1721.         about the SEQUENCE bound to the virtual event VIRTUAL.'''
  1722.         return self.tk.splitlist(self.tk.call('event', 'info', virtual))
  1723.  
  1724.     
  1725.     def image_names(self):
  1726.         '''Return a list of all existing image names.'''
  1727.         return self.tk.call('image', 'names')
  1728.  
  1729.     
  1730.     def image_types(self):
  1731.         '''Return a list of all available image types (e.g. phote bitmap).'''
  1732.         return self.tk.call('image', 'types')
  1733.  
  1734.  
  1735.  
  1736. class CallWrapper:
  1737.     '''Internal class. Stores function to call when some user
  1738.     defined Tcl function is called e.g. after an event occurred.'''
  1739.     
  1740.     def __init__(self, func, subst, widget):
  1741.         '''Store FUNC, SUBST and WIDGET as members.'''
  1742.         self.func = func
  1743.         self.subst = subst
  1744.         self.widget = widget
  1745.  
  1746.     
  1747.     def __call__(self, *args):
  1748.         '''Apply first function SUBST to arguments, than FUNC.'''
  1749.         
  1750.         try:
  1751.             if self.subst:
  1752.                 args = self.subst(*args)
  1753.             
  1754.             return self.func(*args)
  1755.         except SystemExit:
  1756.             msg = None
  1757.             raise SystemExit, msg
  1758.         except:
  1759.             self.widget._report_exception()
  1760.  
  1761.  
  1762.  
  1763.  
  1764. class Wm:
  1765.     '''Provides functions for the communication with the window manager.'''
  1766.     
  1767.     def wm_aspect(self, minNumer = None, minDenom = None, maxNumer = None, maxDenom = None):
  1768.         '''Instruct the window manager to set the aspect ratio (width/height)
  1769.         of this widget to be between MINNUMER/MINDENOM and MAXNUMER/MAXDENOM. Return a tuple
  1770.         of the actual values if no argument is given.'''
  1771.         return self._getints(self.tk.call('wm', 'aspect', self._w, minNumer, minDenom, maxNumer, maxDenom))
  1772.  
  1773.     aspect = wm_aspect
  1774.     
  1775.     def wm_attributes(self, *args):
  1776.         '''This subcommand returns or sets platform specific attributes
  1777.  
  1778.         The first form returns a list of the platform specific flags and
  1779.         their values. The second form returns the value for the specific
  1780.         option. The third form sets one or more of the values. The values
  1781.         are as follows:
  1782.  
  1783.         On Windows, -disabled gets or sets whether the window is in a
  1784.         disabled state. -toolwindow gets or sets the style of the window
  1785.         to toolwindow (as defined in the MSDN). -topmost gets or sets
  1786.         whether this is a topmost window (displays above all other
  1787.         windows).
  1788.  
  1789.         On Macintosh, XXXXX
  1790.  
  1791.         On Unix, there are currently no special attribute values.
  1792.         '''
  1793.         args = ('wm', 'attributes', self._w) + args
  1794.         return self.tk.call(args)
  1795.  
  1796.     attributes = wm_attributes
  1797.     
  1798.     def wm_client(self, name = None):
  1799.         '''Store NAME in WM_CLIENT_MACHINE property of this widget. Return
  1800.         current value.'''
  1801.         return self.tk.call('wm', 'client', self._w, name)
  1802.  
  1803.     client = wm_client
  1804.     
  1805.     def wm_colormapwindows(self, *wlist):
  1806.         '''Store list of window names (WLIST) into WM_COLORMAPWINDOWS property
  1807.         of this widget. This list contains windows whose colormaps differ from their
  1808.         parents. Return current list of widgets if WLIST is empty.'''
  1809.         if len(wlist) > 1:
  1810.             wlist = (wlist,)
  1811.         
  1812.         args = ('wm', 'colormapwindows', self._w) + wlist
  1813.         return map(self._nametowidget, self.tk.call(args))
  1814.  
  1815.     colormapwindows = wm_colormapwindows
  1816.     
  1817.     def wm_command(self, value = None):
  1818.         '''Store VALUE in WM_COMMAND property. It is the command
  1819.         which shall be used to invoke the application. Return current
  1820.         command if VALUE is None.'''
  1821.         return self.tk.call('wm', 'command', self._w, value)
  1822.  
  1823.     command = wm_command
  1824.     
  1825.     def wm_deiconify(self):
  1826.         '''Deiconify this widget. If it was never mapped it will not be mapped.
  1827.         On Windows it will raise this widget and give it the focus.'''
  1828.         return self.tk.call('wm', 'deiconify', self._w)
  1829.  
  1830.     deiconify = wm_deiconify
  1831.     
  1832.     def wm_focusmodel(self, model = None):
  1833.         '''Set focus model to MODEL. "active" means that this widget will claim
  1834.         the focus itself, "passive" means that the window manager shall give
  1835.         the focus. Return current focus model if MODEL is None.'''
  1836.         return self.tk.call('wm', 'focusmodel', self._w, model)
  1837.  
  1838.     focusmodel = wm_focusmodel
  1839.     
  1840.     def wm_frame(self):
  1841.         '''Return identifier for decorative frame of this widget if present.'''
  1842.         return self.tk.call('wm', 'frame', self._w)
  1843.  
  1844.     frame = wm_frame
  1845.     
  1846.     def wm_geometry(self, newGeometry = None):
  1847.         '''Set geometry to NEWGEOMETRY of the form =widthxheight+x+y. Return
  1848.         current value if None is given.'''
  1849.         return self.tk.call('wm', 'geometry', self._w, newGeometry)
  1850.  
  1851.     geometry = wm_geometry
  1852.     
  1853.     def wm_grid(self, baseWidth = None, baseHeight = None, widthInc = None, heightInc = None):
  1854.         '''Instruct the window manager that this widget shall only be
  1855.         resized on grid boundaries. WIDTHINC and HEIGHTINC are the width and
  1856.         height of a grid unit in pixels. BASEWIDTH and BASEHEIGHT are the
  1857.         number of grid units requested in Tk_GeometryRequest.'''
  1858.         return self._getints(self.tk.call('wm', 'grid', self._w, baseWidth, baseHeight, widthInc, heightInc))
  1859.  
  1860.     grid = wm_grid
  1861.     
  1862.     def wm_group(self, pathName = None):
  1863.         '''Set the group leader widgets for related widgets to PATHNAME. Return
  1864.         the group leader of this widget if None is given.'''
  1865.         return self.tk.call('wm', 'group', self._w, pathName)
  1866.  
  1867.     group = wm_group
  1868.     
  1869.     def wm_iconbitmap(self, bitmap = None, default = None):
  1870.         """Set bitmap for the iconified widget to BITMAP. Return
  1871.         the bitmap if None is given.
  1872.  
  1873.         Under Windows, the DEFAULT parameter can be used to set the icon
  1874.         for the widget and any descendents that don't have an icon set
  1875.         explicitly.  DEFAULT can be the relative path to a .ico file
  1876.         (example: root.iconbitmap(default='myicon.ico') ).  See Tk
  1877.         documentation for more information."""
  1878.         if default:
  1879.             return self.tk.call('wm', 'iconbitmap', self._w, '-default', default)
  1880.         else:
  1881.             return self.tk.call('wm', 'iconbitmap', self._w, bitmap)
  1882.  
  1883.     iconbitmap = wm_iconbitmap
  1884.     
  1885.     def wm_iconify(self):
  1886.         '''Display widget as icon.'''
  1887.         return self.tk.call('wm', 'iconify', self._w)
  1888.  
  1889.     iconify = wm_iconify
  1890.     
  1891.     def wm_iconmask(self, bitmap = None):
  1892.         '''Set mask for the icon bitmap of this widget. Return the
  1893.         mask if None is given.'''
  1894.         return self.tk.call('wm', 'iconmask', self._w, bitmap)
  1895.  
  1896.     iconmask = wm_iconmask
  1897.     
  1898.     def wm_iconname(self, newName = None):
  1899.         '''Set the name of the icon for this widget. Return the name if
  1900.         None is given.'''
  1901.         return self.tk.call('wm', 'iconname', self._w, newName)
  1902.  
  1903.     iconname = wm_iconname
  1904.     
  1905.     def wm_iconposition(self, x = None, y = None):
  1906.         '''Set the position of the icon of this widget to X and Y. Return
  1907.         a tuple of the current values of X and X if None is given.'''
  1908.         return self._getints(self.tk.call('wm', 'iconposition', self._w, x, y))
  1909.  
  1910.     iconposition = wm_iconposition
  1911.     
  1912.     def wm_iconwindow(self, pathName = None):
  1913.         '''Set widget PATHNAME to be displayed instead of icon. Return the current
  1914.         value if None is given.'''
  1915.         return self.tk.call('wm', 'iconwindow', self._w, pathName)
  1916.  
  1917.     iconwindow = wm_iconwindow
  1918.     
  1919.     def wm_maxsize(self, width = None, height = None):
  1920.         '''Set max WIDTH and HEIGHT for this widget. If the window is gridded
  1921.         the values are given in grid units. Return the current values if None
  1922.         is given.'''
  1923.         return self._getints(self.tk.call('wm', 'maxsize', self._w, width, height))
  1924.  
  1925.     maxsize = wm_maxsize
  1926.     
  1927.     def wm_minsize(self, width = None, height = None):
  1928.         '''Set min WIDTH and HEIGHT for this widget. If the window is gridded
  1929.         the values are given in grid units. Return the current values if None
  1930.         is given.'''
  1931.         return self._getints(self.tk.call('wm', 'minsize', self._w, width, height))
  1932.  
  1933.     minsize = wm_minsize
  1934.     
  1935.     def wm_overrideredirect(self, boolean = None):
  1936.         '''Instruct the window manager to ignore this widget
  1937.         if BOOLEAN is given with 1. Return the current value if None
  1938.         is given.'''
  1939.         return self._getboolean(self.tk.call('wm', 'overrideredirect', self._w, boolean))
  1940.  
  1941.     overrideredirect = wm_overrideredirect
  1942.     
  1943.     def wm_positionfrom(self, who = None):
  1944.         '''Instruct the window manager that the position of this widget shall
  1945.         be defined by the user if WHO is "user", and by its own policy if WHO is
  1946.         "program".'''
  1947.         return self.tk.call('wm', 'positionfrom', self._w, who)
  1948.  
  1949.     positionfrom = wm_positionfrom
  1950.     
  1951.     def wm_protocol(self, name = None, func = None):
  1952.         '''Bind function FUNC to command NAME for this widget.
  1953.         Return the function bound to NAME if None is given. NAME could be
  1954.         e.g. "WM_SAVE_YOURSELF" or "WM_DELETE_WINDOW".'''
  1955.         if callable(func):
  1956.             command = self._register(func)
  1957.         else:
  1958.             command = func
  1959.         return self.tk.call('wm', 'protocol', self._w, name, command)
  1960.  
  1961.     protocol = wm_protocol
  1962.     
  1963.     def wm_resizable(self, width = None, height = None):
  1964.         '''Instruct the window manager whether this width can be resized
  1965.         in WIDTH or HEIGHT. Both values are boolean values.'''
  1966.         return self.tk.call('wm', 'resizable', self._w, width, height)
  1967.  
  1968.     resizable = wm_resizable
  1969.     
  1970.     def wm_sizefrom(self, who = None):
  1971.         '''Instruct the window manager that the size of this widget shall
  1972.         be defined by the user if WHO is "user", and by its own policy if WHO is
  1973.         "program".'''
  1974.         return self.tk.call('wm', 'sizefrom', self._w, who)
  1975.  
  1976.     sizefrom = wm_sizefrom
  1977.     
  1978.     def wm_state(self, newstate = None):
  1979.         '''Query or set the state of this widget as one of normal, icon,
  1980.         iconic (see wm_iconwindow), withdrawn, or zoomed (Windows only).'''
  1981.         return self.tk.call('wm', 'state', self._w, newstate)
  1982.  
  1983.     state = wm_state
  1984.     
  1985.     def wm_title(self, string = None):
  1986.         '''Set the title of this widget.'''
  1987.         return self.tk.call('wm', 'title', self._w, string)
  1988.  
  1989.     title = wm_title
  1990.     
  1991.     def wm_transient(self, master = None):
  1992.         '''Instruct the window manager that this widget is transient
  1993.         with regard to widget MASTER.'''
  1994.         return self.tk.call('wm', 'transient', self._w, master)
  1995.  
  1996.     transient = wm_transient
  1997.     
  1998.     def wm_withdraw(self):
  1999.         '''Withdraw this widget from the screen such that it is unmapped
  2000.         and forgotten by the window manager. Re-draw it with wm_deiconify.'''
  2001.         return self.tk.call('wm', 'withdraw', self._w)
  2002.  
  2003.     withdraw = wm_withdraw
  2004.  
  2005.  
  2006. class Tk(Misc, Wm):
  2007.     '''Toplevel widget of Tk which represents mostly the main window
  2008.     of an appliation. It has an associated Tcl interpreter.'''
  2009.     _w = '.'
  2010.     
  2011.     def __init__(self, screenName = None, baseName = None, className = 'Tk', useTk = 1, sync = 0, use = None):
  2012.         '''Return a new Toplevel widget on screen SCREENNAME. A new Tcl interpreter will
  2013.         be created. BASENAME will be used for the identification of the profile file (see
  2014.         readprofile).
  2015.         It is constructed from sys.argv[0] without extensions if None is given. CLASSNAME
  2016.         is the name of the widget class.'''
  2017.         self.master = None
  2018.         self.children = { }
  2019.         self._tkloaded = 0
  2020.         self.tk = None
  2021.         if baseName is None:
  2022.             import sys
  2023.             import os as os
  2024.             baseName = os.path.basename(sys.argv[0])
  2025.             (baseName, ext) = os.path.splitext(baseName)
  2026.             if ext not in ('.py', '.pyc', '.pyo'):
  2027.                 baseName = baseName + ext
  2028.             
  2029.         
  2030.         interactive = 0
  2031.         self.tk = _tkinter.create(screenName, baseName, className, interactive, wantobjects, useTk, sync, use)
  2032.         if useTk:
  2033.             self._loadtk()
  2034.         
  2035.         self.readprofile(baseName, className)
  2036.  
  2037.     
  2038.     def loadtk(self):
  2039.         if not self._tkloaded:
  2040.             self.tk.loadtk()
  2041.             self._loadtk()
  2042.         
  2043.  
  2044.     
  2045.     def _loadtk(self):
  2046.         global _default_root
  2047.         self._tkloaded = 1
  2048.         if _MacOS and hasattr(_MacOS, 'SchedParams'):
  2049.             _MacOS.SchedParams(1, 0)
  2050.             self.update()
  2051.         
  2052.         tk_version = self.tk.getvar('tk_version')
  2053.         if tk_version != _tkinter.TK_VERSION:
  2054.             raise RuntimeError, "tk.h version (%s) doesn't match libtk.a version (%s)" % (_tkinter.TK_VERSION, tk_version)
  2055.         
  2056.         tcl_version = str(self.tk.getvar('tcl_version'))
  2057.         if tcl_version != _tkinter.TCL_VERSION:
  2058.             raise RuntimeError, "tcl.h version (%s) doesn't match libtcl.a version (%s)" % (_tkinter.TCL_VERSION, tcl_version)
  2059.         
  2060.         if TkVersion < 4:
  2061.             raise RuntimeError, 'Tk 4.0 or higher is required; found Tk %s' % str(TkVersion)
  2062.         
  2063.         if self._tclCommands is None:
  2064.             self._tclCommands = []
  2065.         
  2066.         self.tk.createcommand('tkerror', _tkerror)
  2067.         self.tk.createcommand('exit', _exit)
  2068.         self._tclCommands.append('tkerror')
  2069.         self._tclCommands.append('exit')
  2070.         if _support_default_root and not _default_root:
  2071.             _default_root = self
  2072.         
  2073.         self.protocol('WM_DELETE_WINDOW', self.destroy)
  2074.  
  2075.     
  2076.     def destroy(self):
  2077.         '''Destroy this and all descendants widgets. This will
  2078.         end the application of this Tcl interpreter.'''
  2079.         global _default_root
  2080.         for c in self.children.values():
  2081.             c.destroy()
  2082.         
  2083.         self.tk.call('destroy', self._w)
  2084.         Misc.destroy(self)
  2085.         if _support_default_root and _default_root is self:
  2086.             _default_root = None
  2087.         
  2088.  
  2089.     
  2090.     def readprofile(self, baseName, className):
  2091.         '''Internal function. It reads BASENAME.tcl and CLASSNAME.tcl into
  2092.         the Tcl Interpreter and calls execfile on BASENAME.py and CLASSNAME.py if
  2093.         such a file exists in the home directory.'''
  2094.         import os
  2095.         if os.environ.has_key('HOME'):
  2096.             home = os.environ['HOME']
  2097.         else:
  2098.             home = os.curdir
  2099.         class_tcl = os.path.join(home, '.%s.tcl' % className)
  2100.         class_py = os.path.join(home, '.%s.py' % className)
  2101.         base_tcl = os.path.join(home, '.%s.tcl' % baseName)
  2102.         base_py = os.path.join(home, '.%s.py' % baseName)
  2103.         dir = {
  2104.             'self': self }
  2105.         exec 'from Tkinter import *' in dir
  2106.         if os.path.isfile(class_tcl):
  2107.             self.tk.call('source', class_tcl)
  2108.         
  2109.         if os.path.isfile(class_py):
  2110.             execfile(class_py, dir)
  2111.         
  2112.         if os.path.isfile(base_tcl):
  2113.             self.tk.call('source', base_tcl)
  2114.         
  2115.         if os.path.isfile(base_py):
  2116.             execfile(base_py, dir)
  2117.         
  2118.  
  2119.     
  2120.     def report_callback_exception(self, exc, val, tb):
  2121.         '''Internal function. It reports exception on sys.stderr.'''
  2122.         import traceback as traceback
  2123.         import sys
  2124.         sys.stderr.write('Exception in Tkinter callback\n')
  2125.         sys.last_type = exc
  2126.         sys.last_value = val
  2127.         sys.last_traceback = tb
  2128.         traceback.print_exception(exc, val, tb)
  2129.  
  2130.     
  2131.     def __getattr__(self, attr):
  2132.         '''Delegate attribute access to the interpreter object'''
  2133.         return getattr(self.tk, attr)
  2134.  
  2135.  
  2136.  
  2137. def Tcl(screenName = None, baseName = None, className = 'Tk', useTk = 0):
  2138.     return Tk(screenName, baseName, className, useTk)
  2139.  
  2140.  
  2141. class Pack:
  2142.     '''Geometry manager Pack.
  2143.  
  2144.     Base class to use the methods pack_* in every widget.'''
  2145.     
  2146.     def pack_configure(self, cnf = { }, **kw):
  2147.         """Pack a widget in the parent widget. Use as options:
  2148.         after=widget - pack it after you have packed widget
  2149.         anchor=NSEW (or subset) - position widget according to
  2150.                                   given direction
  2151.         before=widget - pack it before you will pack widget
  2152.         expand=bool - expand widget if parent size grows
  2153.         fill=NONE or X or Y or BOTH - fill widget if widget grows
  2154.         in=master - use master to contain this widget
  2155.         in_=master - see 'in' option description
  2156.         ipadx=amount - add internal padding in x direction
  2157.         ipady=amount - add internal padding in y direction
  2158.         padx=amount - add padding in x direction
  2159.         pady=amount - add padding in y direction
  2160.         side=TOP or BOTTOM or LEFT or RIGHT -  where to add this widget.
  2161.         """
  2162.         self.tk.call(('pack', 'configure', self._w) + self._options(cnf, kw))
  2163.  
  2164.     pack = configure = config = pack_configure
  2165.     
  2166.     def pack_forget(self):
  2167.         '''Unmap this widget and do not use it for the packing order.'''
  2168.         self.tk.call('pack', 'forget', self._w)
  2169.  
  2170.     forget = pack_forget
  2171.     
  2172.     def pack_info(self):
  2173.         '''Return information about the packing options
  2174.         for this widget.'''
  2175.         words = self.tk.splitlist(self.tk.call('pack', 'info', self._w))
  2176.         dict = { }
  2177.         for i in range(0, len(words), 2):
  2178.             key = words[i][1:]
  2179.             value = words[i + 1]
  2180.             if value[:1] == '.':
  2181.                 value = self._nametowidget(value)
  2182.             
  2183.             dict[key] = value
  2184.         
  2185.         return dict
  2186.  
  2187.     info = pack_info
  2188.     propagate = pack_propagate = Misc.pack_propagate
  2189.     slaves = pack_slaves = Misc.pack_slaves
  2190.  
  2191.  
  2192. class Place:
  2193.     '''Geometry manager Place.
  2194.  
  2195.     Base class to use the methods place_* in every widget.'''
  2196.     
  2197.     def place_configure(self, cnf = { }, **kw):
  2198.         '''Place a widget in the parent widget. Use as options:
  2199.         in=master - master relative to which the widget is placed
  2200.         in_=master - see \'in\' option description
  2201.         x=amount - locate anchor of this widget at position x of master
  2202.         y=amount - locate anchor of this widget at position y of master
  2203.         relx=amount - locate anchor of this widget between 0.0 and 1.0
  2204.                       relative to width of master (1.0 is right edge)
  2205.         rely=amount - locate anchor of this widget between 0.0 and 1.0
  2206.                       relative to height of master (1.0 is bottom edge)
  2207.         anchor=NSEW (or subset) - position anchor according to given direction
  2208.         width=amount - width of this widget in pixel
  2209.         height=amount - height of this widget in pixel
  2210.         relwidth=amount - width of this widget between 0.0 and 1.0
  2211.                           relative to width of master (1.0 is the same width
  2212.                           as the master)
  2213.         relheight=amount - height of this widget between 0.0 and 1.0
  2214.                            relative to height of master (1.0 is the same
  2215.                            height as the master)
  2216.         bordermode="inside" or "outside" - whether to take border width of
  2217.                                            master widget into account
  2218.         '''
  2219.         self.tk.call(('place', 'configure', self._w) + self._options(cnf, kw))
  2220.  
  2221.     place = configure = config = place_configure
  2222.     
  2223.     def place_forget(self):
  2224.         '''Unmap this widget.'''
  2225.         self.tk.call('place', 'forget', self._w)
  2226.  
  2227.     forget = place_forget
  2228.     
  2229.     def place_info(self):
  2230.         '''Return information about the placing options
  2231.         for this widget.'''
  2232.         words = self.tk.splitlist(self.tk.call('place', 'info', self._w))
  2233.         dict = { }
  2234.         for i in range(0, len(words), 2):
  2235.             key = words[i][1:]
  2236.             value = words[i + 1]
  2237.             if value[:1] == '.':
  2238.                 value = self._nametowidget(value)
  2239.             
  2240.             dict[key] = value
  2241.         
  2242.         return dict
  2243.  
  2244.     info = place_info
  2245.     slaves = place_slaves = Misc.place_slaves
  2246.  
  2247.  
  2248. class Grid:
  2249.     '''Geometry manager Grid.
  2250.  
  2251.     Base class to use the methods grid_* in every widget.'''
  2252.     
  2253.     def grid_configure(self, cnf = { }, **kw):
  2254.         """Position a widget in the parent widget in a grid. Use as options:
  2255.         column=number - use cell identified with given column (starting with 0)
  2256.         columnspan=number - this widget will span several columns
  2257.         in=master - use master to contain this widget
  2258.         in_=master - see 'in' option description
  2259.         ipadx=amount - add internal padding in x direction
  2260.         ipady=amount - add internal padding in y direction
  2261.         padx=amount - add padding in x direction
  2262.         pady=amount - add padding in y direction
  2263.         row=number - use cell identified with given row (starting with 0)
  2264.         rowspan=number - this widget will span several rows
  2265.         sticky=NSEW - if cell is larger on which sides will this
  2266.                       widget stick to the cell boundary
  2267.         """
  2268.         self.tk.call(('grid', 'configure', self._w) + self._options(cnf, kw))
  2269.  
  2270.     grid = configure = config = grid_configure
  2271.     bbox = grid_bbox = Misc.grid_bbox
  2272.     columnconfigure = grid_columnconfigure = Misc.grid_columnconfigure
  2273.     
  2274.     def grid_forget(self):
  2275.         '''Unmap this widget.'''
  2276.         self.tk.call('grid', 'forget', self._w)
  2277.  
  2278.     forget = grid_forget
  2279.     
  2280.     def grid_remove(self):
  2281.         '''Unmap this widget but remember the grid options.'''
  2282.         self.tk.call('grid', 'remove', self._w)
  2283.  
  2284.     
  2285.     def grid_info(self):
  2286.         '''Return information about the options
  2287.         for positioning this widget in a grid.'''
  2288.         words = self.tk.splitlist(self.tk.call('grid', 'info', self._w))
  2289.         dict = { }
  2290.         for i in range(0, len(words), 2):
  2291.             key = words[i][1:]
  2292.             value = words[i + 1]
  2293.             if value[:1] == '.':
  2294.                 value = self._nametowidget(value)
  2295.             
  2296.             dict[key] = value
  2297.         
  2298.         return dict
  2299.  
  2300.     info = grid_info
  2301.     location = grid_location = Misc.grid_location
  2302.     propagate = grid_propagate = Misc.grid_propagate
  2303.     rowconfigure = grid_rowconfigure = Misc.grid_rowconfigure
  2304.     size = grid_size = Misc.grid_size
  2305.     slaves = grid_slaves = Misc.grid_slaves
  2306.  
  2307.  
  2308. class BaseWidget(Misc):
  2309.     '''Internal class.'''
  2310.     
  2311.     def _setup(self, master, cnf):
  2312.         '''Internal function. Sets up information about children.'''
  2313.         global _default_root
  2314.         if _support_default_root:
  2315.             if not master:
  2316.                 if not _default_root:
  2317.                     _default_root = Tk()
  2318.                 
  2319.                 master = _default_root
  2320.             
  2321.         
  2322.         self.master = master
  2323.         self.tk = master.tk
  2324.         name = None
  2325.         if cnf.has_key('name'):
  2326.             name = cnf['name']
  2327.             del cnf['name']
  2328.         
  2329.         if not name:
  2330.             name = repr(id(self))
  2331.         
  2332.         self._name = name
  2333.         if master._w == '.':
  2334.             self._w = '.' + name
  2335.         else:
  2336.             self._w = master._w + '.' + name
  2337.         self.children = { }
  2338.         if self.master.children.has_key(self._name):
  2339.             self.master.children[self._name].destroy()
  2340.         
  2341.         self.master.children[self._name] = self
  2342.  
  2343.     
  2344.     def __init__(self, master, widgetName, cnf = { }, kw = { }, extra = ()):
  2345.         '''Construct a widget with the parent widget MASTER, a name WIDGETNAME
  2346.         and appropriate options.'''
  2347.         if kw:
  2348.             cnf = _cnfmerge((cnf, kw))
  2349.         
  2350.         self.widgetName = widgetName
  2351.         BaseWidget._setup(self, master, cnf)
  2352.         classes = []
  2353.         for k in cnf.keys():
  2354.             if type(k) is ClassType:
  2355.                 classes.append((k, cnf[k]))
  2356.                 del cnf[k]
  2357.                 continue
  2358.         
  2359.         self.tk.call((widgetName, self._w) + extra + self._options(cnf))
  2360.         for k, v in classes:
  2361.             k.configure(self, v)
  2362.         
  2363.  
  2364.     
  2365.     def destroy(self):
  2366.         '''Destroy this and all descendants widgets.'''
  2367.         for c in self.children.values():
  2368.             c.destroy()
  2369.         
  2370.         self.tk.call('destroy', self._w)
  2371.         if self.master.children.has_key(self._name):
  2372.             del self.master.children[self._name]
  2373.         
  2374.         Misc.destroy(self)
  2375.  
  2376.     
  2377.     def _do(self, name, args = ()):
  2378.         return self.tk.call((self._w, name) + args)
  2379.  
  2380.  
  2381.  
  2382. class Widget(BaseWidget, Pack, Place, Grid):
  2383.     '''Internal class.
  2384.  
  2385.     Base class for a widget which can be positioned with the geometry managers
  2386.     Pack, Place or Grid.'''
  2387.     pass
  2388.  
  2389.  
  2390. class Toplevel(BaseWidget, Wm):
  2391.     '''Toplevel widget, e.g. for dialogs.'''
  2392.     
  2393.     def __init__(self, master = None, cnf = { }, **kw):
  2394.         '''Construct a toplevel widget with the parent MASTER.
  2395.  
  2396.         Valid resource names: background, bd, bg, borderwidth, class,
  2397.         colormap, container, cursor, height, highlightbackground,
  2398.         highlightcolor, highlightthickness, menu, relief, screen, takefocus,
  2399.         use, visual, width.'''
  2400.         if kw:
  2401.             cnf = _cnfmerge((cnf, kw))
  2402.         
  2403.         extra = ()
  2404.         for wmkey in [
  2405.             'screen',
  2406.             'class_',
  2407.             'class',
  2408.             'visual',
  2409.             'colormap']:
  2410.             if cnf.has_key(wmkey):
  2411.                 val = cnf[wmkey]
  2412.                 if wmkey[-1] == '_':
  2413.                     opt = '-' + wmkey[:-1]
  2414.                 else:
  2415.                     opt = '-' + wmkey
  2416.                 extra = extra + (opt, val)
  2417.                 del cnf[wmkey]
  2418.                 continue
  2419.         
  2420.         BaseWidget.__init__(self, master, 'toplevel', cnf, { }, extra)
  2421.         root = self._root()
  2422.         self.iconname(root.iconname())
  2423.         self.title(root.title())
  2424.         self.protocol('WM_DELETE_WINDOW', self.destroy)
  2425.  
  2426.  
  2427.  
  2428. class Button(Widget):
  2429.     '''Button widget.'''
  2430.     
  2431.     def __init__(self, master = None, cnf = { }, **kw):
  2432.         '''Construct a button widget with the parent MASTER.
  2433.  
  2434.         STANDARD OPTIONS
  2435.  
  2436.             activebackground, activeforeground, anchor,
  2437.             background, bitmap, borderwidth, cursor,
  2438.             disabledforeground, font, foreground
  2439.             highlightbackground, highlightcolor,
  2440.             highlightthickness, image, justify,
  2441.             padx, pady, relief, repeatdelay,
  2442.             repeatinterval, takefocus, text,
  2443.             textvariable, underline, wraplength
  2444.  
  2445.         WIDGET-SPECIFIC OPTIONS
  2446.  
  2447.             command, compound, default, height,
  2448.             overrelief, state, width
  2449.         '''
  2450.         Widget.__init__(self, master, 'button', cnf, kw)
  2451.  
  2452.     
  2453.     def tkButtonEnter(self, *dummy):
  2454.         self.tk.call('tkButtonEnter', self._w)
  2455.  
  2456.     
  2457.     def tkButtonLeave(self, *dummy):
  2458.         self.tk.call('tkButtonLeave', self._w)
  2459.  
  2460.     
  2461.     def tkButtonDown(self, *dummy):
  2462.         self.tk.call('tkButtonDown', self._w)
  2463.  
  2464.     
  2465.     def tkButtonUp(self, *dummy):
  2466.         self.tk.call('tkButtonUp', self._w)
  2467.  
  2468.     
  2469.     def tkButtonInvoke(self, *dummy):
  2470.         self.tk.call('tkButtonInvoke', self._w)
  2471.  
  2472.     
  2473.     def flash(self):
  2474.         """Flash the button.
  2475.  
  2476.         This is accomplished by redisplaying
  2477.         the button several times, alternating between active and
  2478.         normal colors. At the end of the flash the button is left
  2479.         in the same normal/active state as when the command was
  2480.         invoked. This command is ignored if the button's state is
  2481.         disabled.
  2482.         """
  2483.         self.tk.call(self._w, 'flash')
  2484.  
  2485.     
  2486.     def invoke(self):
  2487.         """Invoke the command associated with the button.
  2488.  
  2489.         The return value is the return value from the command,
  2490.         or an empty string if there is no command associated with
  2491.         the button. This command is ignored if the button's state
  2492.         is disabled.
  2493.         """
  2494.         return self.tk.call(self._w, 'invoke')
  2495.  
  2496.  
  2497.  
  2498. def AtEnd():
  2499.     return 'end'
  2500.  
  2501.  
  2502. def AtInsert(*args):
  2503.     s = 'insert'
  2504.     for a in args:
  2505.         if a:
  2506.             s = s + ' ' + a
  2507.             continue
  2508.     
  2509.     return s
  2510.  
  2511.  
  2512. def AtSelFirst():
  2513.     return 'sel.first'
  2514.  
  2515.  
  2516. def AtSelLast():
  2517.     return 'sel.last'
  2518.  
  2519.  
  2520. def At(x, y = None):
  2521.     if y is None:
  2522.         return '@%r' % (x,)
  2523.     else:
  2524.         return '@%r,%r' % (x, y)
  2525.  
  2526.  
  2527. class Canvas(Widget):
  2528.     '''Canvas widget to display graphical elements like lines or text.'''
  2529.     
  2530.     def __init__(self, master = None, cnf = { }, **kw):
  2531.         '''Construct a canvas widget with the parent MASTER.
  2532.  
  2533.         Valid resource names: background, bd, bg, borderwidth, closeenough,
  2534.         confine, cursor, height, highlightbackground, highlightcolor,
  2535.         highlightthickness, insertbackground, insertborderwidth,
  2536.         insertofftime, insertontime, insertwidth, offset, relief,
  2537.         scrollregion, selectbackground, selectborderwidth, selectforeground,
  2538.         state, takefocus, width, xscrollcommand, xscrollincrement,
  2539.         yscrollcommand, yscrollincrement.'''
  2540.         Widget.__init__(self, master, 'canvas', cnf, kw)
  2541.  
  2542.     
  2543.     def addtag(self, *args):
  2544.         '''Internal function.'''
  2545.         self.tk.call((self._w, 'addtag') + args)
  2546.  
  2547.     
  2548.     def addtag_above(self, newtag, tagOrId):
  2549.         '''Add tag NEWTAG to all items above TAGORID.'''
  2550.         self.addtag(newtag, 'above', tagOrId)
  2551.  
  2552.     
  2553.     def addtag_all(self, newtag):
  2554.         '''Add tag NEWTAG to all items.'''
  2555.         self.addtag(newtag, 'all')
  2556.  
  2557.     
  2558.     def addtag_below(self, newtag, tagOrId):
  2559.         '''Add tag NEWTAG to all items below TAGORID.'''
  2560.         self.addtag(newtag, 'below', tagOrId)
  2561.  
  2562.     
  2563.     def addtag_closest(self, newtag, x, y, halo = None, start = None):
  2564.         '''Add tag NEWTAG to item which is closest to pixel at X, Y.
  2565.         If several match take the top-most.
  2566.         All items closer than HALO are considered overlapping (all are
  2567.         closests). If START is specified the next below this tag is taken.'''
  2568.         self.addtag(newtag, 'closest', x, y, halo, start)
  2569.  
  2570.     
  2571.     def addtag_enclosed(self, newtag, x1, y1, x2, y2):
  2572.         '''Add tag NEWTAG to all items in the rectangle defined
  2573.         by X1,Y1,X2,Y2.'''
  2574.         self.addtag(newtag, 'enclosed', x1, y1, x2, y2)
  2575.  
  2576.     
  2577.     def addtag_overlapping(self, newtag, x1, y1, x2, y2):
  2578.         '''Add tag NEWTAG to all items which overlap the rectangle
  2579.         defined by X1,Y1,X2,Y2.'''
  2580.         self.addtag(newtag, 'overlapping', x1, y1, x2, y2)
  2581.  
  2582.     
  2583.     def addtag_withtag(self, newtag, tagOrId):
  2584.         '''Add tag NEWTAG to all items with TAGORID.'''
  2585.         self.addtag(newtag, 'withtag', tagOrId)
  2586.  
  2587.     
  2588.     def bbox(self, *args):
  2589.         '''Return a tuple of X1,Y1,X2,Y2 coordinates for a rectangle
  2590.         which encloses all items with tags specified as arguments.'''
  2591.         if not self._getints(self.tk.call((self._w, 'bbox') + args)):
  2592.             pass
  2593.  
  2594.     
  2595.     def tag_unbind(self, tagOrId, sequence, funcid = None):
  2596.         '''Unbind for all items with TAGORID for event SEQUENCE  the
  2597.         function identified with FUNCID.'''
  2598.         self.tk.call(self._w, 'bind', tagOrId, sequence, '')
  2599.         if funcid:
  2600.             self.deletecommand(funcid)
  2601.         
  2602.  
  2603.     
  2604.     def tag_bind(self, tagOrId, sequence = None, func = None, add = None):
  2605.         '''Bind to all items with TAGORID at event SEQUENCE a call to function FUNC.
  2606.  
  2607.         An additional boolean parameter ADD specifies whether FUNC will be
  2608.         called additionally to the other bound function or whether it will
  2609.         replace the previous function. See bind for the return value.'''
  2610.         return self._bind((self._w, 'bind', tagOrId), sequence, func, add)
  2611.  
  2612.     
  2613.     def canvasx(self, screenx, gridspacing = None):
  2614.         '''Return the canvas x coordinate of pixel position SCREENX rounded
  2615.         to nearest multiple of GRIDSPACING units.'''
  2616.         return getdouble(self.tk.call(self._w, 'canvasx', screenx, gridspacing))
  2617.  
  2618.     
  2619.     def canvasy(self, screeny, gridspacing = None):
  2620.         '''Return the canvas y coordinate of pixel position SCREENY rounded
  2621.         to nearest multiple of GRIDSPACING units.'''
  2622.         return getdouble(self.tk.call(self._w, 'canvasy', screeny, gridspacing))
  2623.  
  2624.     
  2625.     def coords(self, *args):
  2626.         '''Return a list of coordinates for the item given in ARGS.'''
  2627.         return map(getdouble, self.tk.splitlist(self.tk.call((self._w, 'coords') + args)))
  2628.  
  2629.     
  2630.     def _create(self, itemType, args, kw):
  2631.         '''Internal function.'''
  2632.         args = _flatten(args)
  2633.         cnf = args[-1]
  2634.         if type(cnf) in (DictionaryType, TupleType):
  2635.             args = args[:-1]
  2636.         else:
  2637.             cnf = { }
  2638.         return getint(self.tk.call(self._w, 'create', itemType, *args + self._options(cnf, kw)))
  2639.  
  2640.     
  2641.     def create_arc(self, *args, **kw):
  2642.         '''Create arc shaped region with coordinates x1,y1,x2,y2.'''
  2643.         return self._create('arc', args, kw)
  2644.  
  2645.     
  2646.     def create_bitmap(self, *args, **kw):
  2647.         '''Create bitmap with coordinates x1,y1.'''
  2648.         return self._create('bitmap', args, kw)
  2649.  
  2650.     
  2651.     def create_image(self, *args, **kw):
  2652.         '''Create image item with coordinates x1,y1.'''
  2653.         return self._create('image', args, kw)
  2654.  
  2655.     
  2656.     def create_line(self, *args, **kw):
  2657.         '''Create line with coordinates x1,y1,...,xn,yn.'''
  2658.         return self._create('line', args, kw)
  2659.  
  2660.     
  2661.     def create_oval(self, *args, **kw):
  2662.         '''Create oval with coordinates x1,y1,x2,y2.'''
  2663.         return self._create('oval', args, kw)
  2664.  
  2665.     
  2666.     def create_polygon(self, *args, **kw):
  2667.         '''Create polygon with coordinates x1,y1,...,xn,yn.'''
  2668.         return self._create('polygon', args, kw)
  2669.  
  2670.     
  2671.     def create_rectangle(self, *args, **kw):
  2672.         '''Create rectangle with coordinates x1,y1,x2,y2.'''
  2673.         return self._create('rectangle', args, kw)
  2674.  
  2675.     
  2676.     def create_text(self, *args, **kw):
  2677.         '''Create text with coordinates x1,y1.'''
  2678.         return self._create('text', args, kw)
  2679.  
  2680.     
  2681.     def create_window(self, *args, **kw):
  2682.         '''Create window with coordinates x1,y1,x2,y2.'''
  2683.         return self._create('window', args, kw)
  2684.  
  2685.     
  2686.     def dchars(self, *args):
  2687.         '''Delete characters of text items identified by tag or id in ARGS (possibly
  2688.         several times) from FIRST to LAST character (including).'''
  2689.         self.tk.call((self._w, 'dchars') + args)
  2690.  
  2691.     
  2692.     def delete(self, *args):
  2693.         '''Delete items identified by all tag or ids contained in ARGS.'''
  2694.         self.tk.call((self._w, 'delete') + args)
  2695.  
  2696.     
  2697.     def dtag(self, *args):
  2698.         '''Delete tag or id given as last arguments in ARGS from items
  2699.         identified by first argument in ARGS.'''
  2700.         self.tk.call((self._w, 'dtag') + args)
  2701.  
  2702.     
  2703.     def find(self, *args):
  2704.         '''Internal function.'''
  2705.         if not self._getints(self.tk.call((self._w, 'find') + args)):
  2706.             pass
  2707.         return ()
  2708.  
  2709.     
  2710.     def find_above(self, tagOrId):
  2711.         '''Return items above TAGORID.'''
  2712.         return self.find('above', tagOrId)
  2713.  
  2714.     
  2715.     def find_all(self):
  2716.         '''Return all items.'''
  2717.         return self.find('all')
  2718.  
  2719.     
  2720.     def find_below(self, tagOrId):
  2721.         '''Return all items below TAGORID.'''
  2722.         return self.find('below', tagOrId)
  2723.  
  2724.     
  2725.     def find_closest(self, x, y, halo = None, start = None):
  2726.         '''Return item which is closest to pixel at X, Y.
  2727.         If several match take the top-most.
  2728.         All items closer than HALO are considered overlapping (all are
  2729.         closests). If START is specified the next below this tag is taken.'''
  2730.         return self.find('closest', x, y, halo, start)
  2731.  
  2732.     
  2733.     def find_enclosed(self, x1, y1, x2, y2):
  2734.         '''Return all items in rectangle defined
  2735.         by X1,Y1,X2,Y2.'''
  2736.         return self.find('enclosed', x1, y1, x2, y2)
  2737.  
  2738.     
  2739.     def find_overlapping(self, x1, y1, x2, y2):
  2740.         '''Return all items which overlap the rectangle
  2741.         defined by X1,Y1,X2,Y2.'''
  2742.         return self.find('overlapping', x1, y1, x2, y2)
  2743.  
  2744.     
  2745.     def find_withtag(self, tagOrId):
  2746.         '''Return all items with TAGORID.'''
  2747.         return self.find('withtag', tagOrId)
  2748.  
  2749.     
  2750.     def focus(self, *args):
  2751.         '''Set focus to the first item specified in ARGS.'''
  2752.         return self.tk.call((self._w, 'focus') + args)
  2753.  
  2754.     
  2755.     def gettags(self, *args):
  2756.         '''Return tags associated with the first item specified in ARGS.'''
  2757.         return self.tk.splitlist(self.tk.call((self._w, 'gettags') + args))
  2758.  
  2759.     
  2760.     def icursor(self, *args):
  2761.         '''Set cursor at position POS in the item identified by TAGORID.
  2762.         In ARGS TAGORID must be first.'''
  2763.         self.tk.call((self._w, 'icursor') + args)
  2764.  
  2765.     
  2766.     def index(self, *args):
  2767.         '''Return position of cursor as integer in item specified in ARGS.'''
  2768.         return getint(self.tk.call((self._w, 'index') + args))
  2769.  
  2770.     
  2771.     def insert(self, *args):
  2772.         '''Insert TEXT in item TAGORID at position POS. ARGS must
  2773.         be TAGORID POS TEXT.'''
  2774.         self.tk.call((self._w, 'insert') + args)
  2775.  
  2776.     
  2777.     def itemcget(self, tagOrId, option):
  2778.         '''Return the resource value for an OPTION for item TAGORID.'''
  2779.         return self.tk.call((self._w, 'itemcget') + (tagOrId, '-' + option))
  2780.  
  2781.     
  2782.     def itemconfigure(self, tagOrId, cnf = None, **kw):
  2783.         '''Configure resources of an item TAGORID.
  2784.  
  2785.         The values for resources are specified as keyword
  2786.         arguments. To get an overview about
  2787.         the allowed keyword arguments call the method without arguments.
  2788.         '''
  2789.         return self._configure(('itemconfigure', tagOrId), cnf, kw)
  2790.  
  2791.     itemconfig = itemconfigure
  2792.     
  2793.     def tag_lower(self, *args):
  2794.         '''Lower an item TAGORID given in ARGS
  2795.         (optional below another item).'''
  2796.         self.tk.call((self._w, 'lower') + args)
  2797.  
  2798.     lower = tag_lower
  2799.     
  2800.     def move(self, *args):
  2801.         '''Move an item TAGORID given in ARGS.'''
  2802.         self.tk.call((self._w, 'move') + args)
  2803.  
  2804.     
  2805.     def postscript(self, cnf = { }, **kw):
  2806.         '''Print the contents of the canvas to a postscript
  2807.         file. Valid options: colormap, colormode, file, fontmap,
  2808.         height, pageanchor, pageheight, pagewidth, pagex, pagey,
  2809.         rotate, witdh, x, y.'''
  2810.         return self.tk.call((self._w, 'postscript') + self._options(cnf, kw))
  2811.  
  2812.     
  2813.     def tag_raise(self, *args):
  2814.         '''Raise an item TAGORID given in ARGS
  2815.         (optional above another item).'''
  2816.         self.tk.call((self._w, 'raise') + args)
  2817.  
  2818.     lift = tkraise = tag_raise
  2819.     
  2820.     def scale(self, *args):
  2821.         '''Scale item TAGORID with XORIGIN, YORIGIN, XSCALE, YSCALE.'''
  2822.         self.tk.call((self._w, 'scale') + args)
  2823.  
  2824.     
  2825.     def scan_mark(self, x, y):
  2826.         '''Remember the current X, Y coordinates.'''
  2827.         self.tk.call(self._w, 'scan', 'mark', x, y)
  2828.  
  2829.     
  2830.     def scan_dragto(self, x, y, gain = 10):
  2831.         '''Adjust the view of the canvas to GAIN times the
  2832.         difference between X and Y and the coordinates given in
  2833.         scan_mark.'''
  2834.         self.tk.call(self._w, 'scan', 'dragto', x, y, gain)
  2835.  
  2836.     
  2837.     def select_adjust(self, tagOrId, index):
  2838.         '''Adjust the end of the selection near the cursor of an item TAGORID to index.'''
  2839.         self.tk.call(self._w, 'select', 'adjust', tagOrId, index)
  2840.  
  2841.     
  2842.     def select_clear(self):
  2843.         '''Clear the selection if it is in this widget.'''
  2844.         self.tk.call(self._w, 'select', 'clear')
  2845.  
  2846.     
  2847.     def select_from(self, tagOrId, index):
  2848.         '''Set the fixed end of a selection in item TAGORID to INDEX.'''
  2849.         self.tk.call(self._w, 'select', 'from', tagOrId, index)
  2850.  
  2851.     
  2852.     def select_item(self):
  2853.         '''Return the item which has the selection.'''
  2854.         if not self.tk.call(self._w, 'select', 'item'):
  2855.             pass
  2856.  
  2857.     
  2858.     def select_to(self, tagOrId, index):
  2859.         '''Set the variable end of a selection in item TAGORID to INDEX.'''
  2860.         self.tk.call(self._w, 'select', 'to', tagOrId, index)
  2861.  
  2862.     
  2863.     def type(self, tagOrId):
  2864.         '''Return the type of the item TAGORID.'''
  2865.         if not self.tk.call(self._w, 'type', tagOrId):
  2866.             pass
  2867.  
  2868.     
  2869.     def xview(self, *args):
  2870.         '''Query and change horizontal position of the view.'''
  2871.         if not args:
  2872.             return self._getdoubles(self.tk.call(self._w, 'xview'))
  2873.         
  2874.         self.tk.call((self._w, 'xview') + args)
  2875.  
  2876.     
  2877.     def xview_moveto(self, fraction):
  2878.         '''Adjusts the view in the window so that FRACTION of the
  2879.         total width of the canvas is off-screen to the left.'''
  2880.         self.tk.call(self._w, 'xview', 'moveto', fraction)
  2881.  
  2882.     
  2883.     def xview_scroll(self, number, what):
  2884.         '''Shift the x-view according to NUMBER which is measured in "units" or "pages" (WHAT).'''
  2885.         self.tk.call(self._w, 'xview', 'scroll', number, what)
  2886.  
  2887.     
  2888.     def yview(self, *args):
  2889.         '''Query and change vertical position of the view.'''
  2890.         if not args:
  2891.             return self._getdoubles(self.tk.call(self._w, 'yview'))
  2892.         
  2893.         self.tk.call((self._w, 'yview') + args)
  2894.  
  2895.     
  2896.     def yview_moveto(self, fraction):
  2897.         '''Adjusts the view in the window so that FRACTION of the
  2898.         total height of the canvas is off-screen to the top.'''
  2899.         self.tk.call(self._w, 'yview', 'moveto', fraction)
  2900.  
  2901.     
  2902.     def yview_scroll(self, number, what):
  2903.         '''Shift the y-view according to NUMBER which is measured in "units" or "pages" (WHAT).'''
  2904.         self.tk.call(self._w, 'yview', 'scroll', number, what)
  2905.  
  2906.  
  2907.  
  2908. class Checkbutton(Widget):
  2909.     '''Checkbutton widget which is either in on- or off-state.'''
  2910.     
  2911.     def __init__(self, master = None, cnf = { }, **kw):
  2912.         '''Construct a checkbutton widget with the parent MASTER.
  2913.  
  2914.         Valid resource names: activebackground, activeforeground, anchor,
  2915.         background, bd, bg, bitmap, borderwidth, command, cursor,
  2916.         disabledforeground, fg, font, foreground, height,
  2917.         highlightbackground, highlightcolor, highlightthickness, image,
  2918.         indicatoron, justify, offvalue, onvalue, padx, pady, relief,
  2919.         selectcolor, selectimage, state, takefocus, text, textvariable,
  2920.         underline, variable, width, wraplength.'''
  2921.         Widget.__init__(self, master, 'checkbutton', cnf, kw)
  2922.  
  2923.     
  2924.     def deselect(self):
  2925.         '''Put the button in off-state.'''
  2926.         self.tk.call(self._w, 'deselect')
  2927.  
  2928.     
  2929.     def flash(self):
  2930.         '''Flash the button.'''
  2931.         self.tk.call(self._w, 'flash')
  2932.  
  2933.     
  2934.     def invoke(self):
  2935.         '''Toggle the button and invoke a command if given as resource.'''
  2936.         return self.tk.call(self._w, 'invoke')
  2937.  
  2938.     
  2939.     def select(self):
  2940.         '''Put the button in on-state.'''
  2941.         self.tk.call(self._w, 'select')
  2942.  
  2943.     
  2944.     def toggle(self):
  2945.         '''Toggle the button.'''
  2946.         self.tk.call(self._w, 'toggle')
  2947.  
  2948.  
  2949.  
  2950. class Entry(Widget):
  2951.     '''Entry widget which allows to display simple text.'''
  2952.     
  2953.     def __init__(self, master = None, cnf = { }, **kw):
  2954.         '''Construct an entry widget with the parent MASTER.
  2955.  
  2956.         Valid resource names: background, bd, bg, borderwidth, cursor,
  2957.         exportselection, fg, font, foreground, highlightbackground,
  2958.         highlightcolor, highlightthickness, insertbackground,
  2959.         insertborderwidth, insertofftime, insertontime, insertwidth,
  2960.         invalidcommand, invcmd, justify, relief, selectbackground,
  2961.         selectborderwidth, selectforeground, show, state, takefocus,
  2962.         textvariable, validate, validatecommand, vcmd, width,
  2963.         xscrollcommand.'''
  2964.         Widget.__init__(self, master, 'entry', cnf, kw)
  2965.  
  2966.     
  2967.     def delete(self, first, last = None):
  2968.         '''Delete text from FIRST to LAST (not included).'''
  2969.         self.tk.call(self._w, 'delete', first, last)
  2970.  
  2971.     
  2972.     def get(self):
  2973.         '''Return the text.'''
  2974.         return self.tk.call(self._w, 'get')
  2975.  
  2976.     
  2977.     def icursor(self, index):
  2978.         '''Insert cursor at INDEX.'''
  2979.         self.tk.call(self._w, 'icursor', index)
  2980.  
  2981.     
  2982.     def index(self, index):
  2983.         '''Return position of cursor.'''
  2984.         return getint(self.tk.call(self._w, 'index', index))
  2985.  
  2986.     
  2987.     def insert(self, index, string):
  2988.         '''Insert STRING at INDEX.'''
  2989.         self.tk.call(self._w, 'insert', index, string)
  2990.  
  2991.     
  2992.     def scan_mark(self, x):
  2993.         '''Remember the current X, Y coordinates.'''
  2994.         self.tk.call(self._w, 'scan', 'mark', x)
  2995.  
  2996.     
  2997.     def scan_dragto(self, x):
  2998.         '''Adjust the view of the canvas to 10 times the
  2999.         difference between X and Y and the coordinates given in
  3000.         scan_mark.'''
  3001.         self.tk.call(self._w, 'scan', 'dragto', x)
  3002.  
  3003.     
  3004.     def selection_adjust(self, index):
  3005.         '''Adjust the end of the selection near the cursor to INDEX.'''
  3006.         self.tk.call(self._w, 'selection', 'adjust', index)
  3007.  
  3008.     select_adjust = selection_adjust
  3009.     
  3010.     def selection_clear(self):
  3011.         '''Clear the selection if it is in this widget.'''
  3012.         self.tk.call(self._w, 'selection', 'clear')
  3013.  
  3014.     select_clear = selection_clear
  3015.     
  3016.     def selection_from(self, index):
  3017.         '''Set the fixed end of a selection to INDEX.'''
  3018.         self.tk.call(self._w, 'selection', 'from', index)
  3019.  
  3020.     select_from = selection_from
  3021.     
  3022.     def selection_present(self):
  3023.         '''Return whether the widget has the selection.'''
  3024.         return self.tk.getboolean(self.tk.call(self._w, 'selection', 'present'))
  3025.  
  3026.     select_present = selection_present
  3027.     
  3028.     def selection_range(self, start, end):
  3029.         '''Set the selection from START to END (not included).'''
  3030.         self.tk.call(self._w, 'selection', 'range', start, end)
  3031.  
  3032.     select_range = selection_range
  3033.     
  3034.     def selection_to(self, index):
  3035.         '''Set the variable end of a selection to INDEX.'''
  3036.         self.tk.call(self._w, 'selection', 'to', index)
  3037.  
  3038.     select_to = selection_to
  3039.     
  3040.     def xview(self, index):
  3041.         '''Query and change horizontal position of the view.'''
  3042.         self.tk.call(self._w, 'xview', index)
  3043.  
  3044.     
  3045.     def xview_moveto(self, fraction):
  3046.         '''Adjust the view in the window so that FRACTION of the
  3047.         total width of the entry is off-screen to the left.'''
  3048.         self.tk.call(self._w, 'xview', 'moveto', fraction)
  3049.  
  3050.     
  3051.     def xview_scroll(self, number, what):
  3052.         '''Shift the x-view according to NUMBER which is measured in "units" or "pages" (WHAT).'''
  3053.         self.tk.call(self._w, 'xview', 'scroll', number, what)
  3054.  
  3055.  
  3056.  
  3057. class Frame(Widget):
  3058.     '''Frame widget which may contain other widgets and can have a 3D border.'''
  3059.     
  3060.     def __init__(self, master = None, cnf = { }, **kw):
  3061.         '''Construct a frame widget with the parent MASTER.
  3062.  
  3063.         Valid resource names: background, bd, bg, borderwidth, class,
  3064.         colormap, container, cursor, height, highlightbackground,
  3065.         highlightcolor, highlightthickness, relief, takefocus, visual, width.'''
  3066.         cnf = _cnfmerge((cnf, kw))
  3067.         extra = ()
  3068.         if cnf.has_key('class_'):
  3069.             extra = ('-class', cnf['class_'])
  3070.             del cnf['class_']
  3071.         elif cnf.has_key('class'):
  3072.             extra = ('-class', cnf['class'])
  3073.             del cnf['class']
  3074.         
  3075.         Widget.__init__(self, master, 'frame', cnf, { }, extra)
  3076.  
  3077.  
  3078.  
  3079. class Label(Widget):
  3080.     '''Label widget which can display text and bitmaps.'''
  3081.     
  3082.     def __init__(self, master = None, cnf = { }, **kw):
  3083.         '''Construct a label widget with the parent MASTER.
  3084.  
  3085.         STANDARD OPTIONS
  3086.  
  3087.             activebackground, activeforeground, anchor,
  3088.             background, bitmap, borderwidth, cursor,
  3089.             disabledforeground, font, foreground,
  3090.             highlightbackground, highlightcolor,
  3091.             highlightthickness, image, justify,
  3092.             padx, pady, relief, takefocus, text,
  3093.             textvariable, underline, wraplength
  3094.  
  3095.         WIDGET-SPECIFIC OPTIONS
  3096.  
  3097.             height, state, width
  3098.  
  3099.         '''
  3100.         Widget.__init__(self, master, 'label', cnf, kw)
  3101.  
  3102.  
  3103.  
  3104. class Listbox(Widget):
  3105.     '''Listbox widget which can display a list of strings.'''
  3106.     
  3107.     def __init__(self, master = None, cnf = { }, **kw):
  3108.         '''Construct a listbox widget with the parent MASTER.
  3109.  
  3110.         Valid resource names: background, bd, bg, borderwidth, cursor,
  3111.         exportselection, fg, font, foreground, height, highlightbackground,
  3112.         highlightcolor, highlightthickness, relief, selectbackground,
  3113.         selectborderwidth, selectforeground, selectmode, setgrid, takefocus,
  3114.         width, xscrollcommand, yscrollcommand, listvariable.'''
  3115.         Widget.__init__(self, master, 'listbox', cnf, kw)
  3116.  
  3117.     
  3118.     def activate(self, index):
  3119.         '''Activate item identified by INDEX.'''
  3120.         self.tk.call(self._w, 'activate', index)
  3121.  
  3122.     
  3123.     def bbox(self, *args):
  3124.         '''Return a tuple of X1,Y1,X2,Y2 coordinates for a rectangle
  3125.         which encloses the item identified by index in ARGS.'''
  3126.         if not self._getints(self.tk.call((self._w, 'bbox') + args)):
  3127.             pass
  3128.  
  3129.     
  3130.     def curselection(self):
  3131.         '''Return list of indices of currently selected item.'''
  3132.         return self.tk.splitlist(self.tk.call(self._w, 'curselection'))
  3133.  
  3134.     
  3135.     def delete(self, first, last = None):
  3136.         '''Delete items from FIRST to LAST (not included).'''
  3137.         self.tk.call(self._w, 'delete', first, last)
  3138.  
  3139.     
  3140.     def get(self, first, last = None):
  3141.         '''Get list of items from FIRST to LAST (not included).'''
  3142.         if last:
  3143.             return self.tk.splitlist(self.tk.call(self._w, 'get', first, last))
  3144.         else:
  3145.             return self.tk.call(self._w, 'get', first)
  3146.  
  3147.     
  3148.     def index(self, index):
  3149.         '''Return index of item identified with INDEX.'''
  3150.         i = self.tk.call(self._w, 'index', index)
  3151.         if i == 'none':
  3152.             return None
  3153.         
  3154.         return getint(i)
  3155.  
  3156.     
  3157.     def insert(self, index, *elements):
  3158.         '''Insert ELEMENTS at INDEX.'''
  3159.         self.tk.call((self._w, 'insert', index) + elements)
  3160.  
  3161.     
  3162.     def nearest(self, y):
  3163.         '''Get index of item which is nearest to y coordinate Y.'''
  3164.         return getint(self.tk.call(self._w, 'nearest', y))
  3165.  
  3166.     
  3167.     def scan_mark(self, x, y):
  3168.         '''Remember the current X, Y coordinates.'''
  3169.         self.tk.call(self._w, 'scan', 'mark', x, y)
  3170.  
  3171.     
  3172.     def scan_dragto(self, x, y):
  3173.         '''Adjust the view of the listbox to 10 times the
  3174.         difference between X and Y and the coordinates given in
  3175.         scan_mark.'''
  3176.         self.tk.call(self._w, 'scan', 'dragto', x, y)
  3177.  
  3178.     
  3179.     def see(self, index):
  3180.         '''Scroll such that INDEX is visible.'''
  3181.         self.tk.call(self._w, 'see', index)
  3182.  
  3183.     
  3184.     def selection_anchor(self, index):
  3185.         '''Set the fixed end oft the selection to INDEX.'''
  3186.         self.tk.call(self._w, 'selection', 'anchor', index)
  3187.  
  3188.     select_anchor = selection_anchor
  3189.     
  3190.     def selection_clear(self, first, last = None):
  3191.         '''Clear the selection from FIRST to LAST (not included).'''
  3192.         self.tk.call(self._w, 'selection', 'clear', first, last)
  3193.  
  3194.     select_clear = selection_clear
  3195.     
  3196.     def selection_includes(self, index):
  3197.         '''Return 1 if INDEX is part of the selection.'''
  3198.         return self.tk.getboolean(self.tk.call(self._w, 'selection', 'includes', index))
  3199.  
  3200.     select_includes = selection_includes
  3201.     
  3202.     def selection_set(self, first, last = None):
  3203.         '''Set the selection from FIRST to LAST (not included) without
  3204.         changing the currently selected elements.'''
  3205.         self.tk.call(self._w, 'selection', 'set', first, last)
  3206.  
  3207.     select_set = selection_set
  3208.     
  3209.     def size(self):
  3210.         '''Return the number of elements in the listbox.'''
  3211.         return getint(self.tk.call(self._w, 'size'))
  3212.  
  3213.     
  3214.     def xview(self, *what):
  3215.         '''Query and change horizontal position of the view.'''
  3216.         if not what:
  3217.             return self._getdoubles(self.tk.call(self._w, 'xview'))
  3218.         
  3219.         self.tk.call((self._w, 'xview') + what)
  3220.  
  3221.     
  3222.     def xview_moveto(self, fraction):
  3223.         '''Adjust the view in the window so that FRACTION of the
  3224.         total width of the entry is off-screen to the left.'''
  3225.         self.tk.call(self._w, 'xview', 'moveto', fraction)
  3226.  
  3227.     
  3228.     def xview_scroll(self, number, what):
  3229.         '''Shift the x-view according to NUMBER which is measured in "units" or "pages" (WHAT).'''
  3230.         self.tk.call(self._w, 'xview', 'scroll', number, what)
  3231.  
  3232.     
  3233.     def yview(self, *what):
  3234.         '''Query and change vertical position of the view.'''
  3235.         if not what:
  3236.             return self._getdoubles(self.tk.call(self._w, 'yview'))
  3237.         
  3238.         self.tk.call((self._w, 'yview') + what)
  3239.  
  3240.     
  3241.     def yview_moveto(self, fraction):
  3242.         '''Adjust the view in the window so that FRACTION of the
  3243.         total width of the entry is off-screen to the top.'''
  3244.         self.tk.call(self._w, 'yview', 'moveto', fraction)
  3245.  
  3246.     
  3247.     def yview_scroll(self, number, what):
  3248.         '''Shift the y-view according to NUMBER which is measured in "units" or "pages" (WHAT).'''
  3249.         self.tk.call(self._w, 'yview', 'scroll', number, what)
  3250.  
  3251.     
  3252.     def itemcget(self, index, option):
  3253.         '''Return the resource value for an ITEM and an OPTION.'''
  3254.         return self.tk.call((self._w, 'itemcget') + (index, '-' + option))
  3255.  
  3256.     
  3257.     def itemconfigure(self, index, cnf = None, **kw):
  3258.         '''Configure resources of an ITEM.
  3259.  
  3260.         The values for resources are specified as keyword arguments.
  3261.         To get an overview about the allowed keyword arguments
  3262.         call the method without arguments.
  3263.         Valid resource names: background, bg, foreground, fg,
  3264.         selectbackground, selectforeground.'''
  3265.         return self._configure(('itemconfigure', index), cnf, kw)
  3266.  
  3267.     itemconfig = itemconfigure
  3268.  
  3269.  
  3270. class Menu(Widget):
  3271.     '''Menu widget which allows to display menu bars, pull-down menus and pop-up menus.'''
  3272.     
  3273.     def __init__(self, master = None, cnf = { }, **kw):
  3274.         '''Construct menu widget with the parent MASTER.
  3275.  
  3276.         Valid resource names: activebackground, activeborderwidth,
  3277.         activeforeground, background, bd, bg, borderwidth, cursor,
  3278.         disabledforeground, fg, font, foreground, postcommand, relief,
  3279.         selectcolor, takefocus, tearoff, tearoffcommand, title, type.'''
  3280.         Widget.__init__(self, master, 'menu', cnf, kw)
  3281.  
  3282.     
  3283.     def tk_bindForTraversal(self):
  3284.         pass
  3285.  
  3286.     
  3287.     def tk_mbPost(self):
  3288.         self.tk.call('tk_mbPost', self._w)
  3289.  
  3290.     
  3291.     def tk_mbUnpost(self):
  3292.         self.tk.call('tk_mbUnpost')
  3293.  
  3294.     
  3295.     def tk_traverseToMenu(self, char):
  3296.         self.tk.call('tk_traverseToMenu', self._w, char)
  3297.  
  3298.     
  3299.     def tk_traverseWithinMenu(self, char):
  3300.         self.tk.call('tk_traverseWithinMenu', self._w, char)
  3301.  
  3302.     
  3303.     def tk_getMenuButtons(self):
  3304.         return self.tk.call('tk_getMenuButtons', self._w)
  3305.  
  3306.     
  3307.     def tk_nextMenu(self, count):
  3308.         self.tk.call('tk_nextMenu', count)
  3309.  
  3310.     
  3311.     def tk_nextMenuEntry(self, count):
  3312.         self.tk.call('tk_nextMenuEntry', count)
  3313.  
  3314.     
  3315.     def tk_invokeMenu(self):
  3316.         self.tk.call('tk_invokeMenu', self._w)
  3317.  
  3318.     
  3319.     def tk_firstMenu(self):
  3320.         self.tk.call('tk_firstMenu', self._w)
  3321.  
  3322.     
  3323.     def tk_mbButtonDown(self):
  3324.         self.tk.call('tk_mbButtonDown', self._w)
  3325.  
  3326.     
  3327.     def tk_popup(self, x, y, entry = ''):
  3328.         '''Post the menu at position X,Y with entry ENTRY.'''
  3329.         self.tk.call('tk_popup', self._w, x, y, entry)
  3330.  
  3331.     
  3332.     def activate(self, index):
  3333.         '''Activate entry at INDEX.'''
  3334.         self.tk.call(self._w, 'activate', index)
  3335.  
  3336.     
  3337.     def add(self, itemType, cnf = { }, **kw):
  3338.         '''Internal function.'''
  3339.         self.tk.call((self._w, 'add', itemType) + self._options(cnf, kw))
  3340.  
  3341.     
  3342.     def add_cascade(self, cnf = { }, **kw):
  3343.         '''Add hierarchical menu item.'''
  3344.         if not cnf:
  3345.             pass
  3346.         self.add('cascade', kw)
  3347.  
  3348.     
  3349.     def add_checkbutton(self, cnf = { }, **kw):
  3350.         '''Add checkbutton menu item.'''
  3351.         if not cnf:
  3352.             pass
  3353.         self.add('checkbutton', kw)
  3354.  
  3355.     
  3356.     def add_command(self, cnf = { }, **kw):
  3357.         '''Add command menu item.'''
  3358.         if not cnf:
  3359.             pass
  3360.         self.add('command', kw)
  3361.  
  3362.     
  3363.     def add_radiobutton(self, cnf = { }, **kw):
  3364.         '''Addd radio menu item.'''
  3365.         if not cnf:
  3366.             pass
  3367.         self.add('radiobutton', kw)
  3368.  
  3369.     
  3370.     def add_separator(self, cnf = { }, **kw):
  3371.         '''Add separator.'''
  3372.         if not cnf:
  3373.             pass
  3374.         self.add('separator', kw)
  3375.  
  3376.     
  3377.     def insert(self, index, itemType, cnf = { }, **kw):
  3378.         '''Internal function.'''
  3379.         self.tk.call((self._w, 'insert', index, itemType) + self._options(cnf, kw))
  3380.  
  3381.     
  3382.     def insert_cascade(self, index, cnf = { }, **kw):
  3383.         '''Add hierarchical menu item at INDEX.'''
  3384.         if not cnf:
  3385.             pass
  3386.         self.insert(index, 'cascade', kw)
  3387.  
  3388.     
  3389.     def insert_checkbutton(self, index, cnf = { }, **kw):
  3390.         '''Add checkbutton menu item at INDEX.'''
  3391.         if not cnf:
  3392.             pass
  3393.         self.insert(index, 'checkbutton', kw)
  3394.  
  3395.     
  3396.     def insert_command(self, index, cnf = { }, **kw):
  3397.         '''Add command menu item at INDEX.'''
  3398.         if not cnf:
  3399.             pass
  3400.         self.insert(index, 'command', kw)
  3401.  
  3402.     
  3403.     def insert_radiobutton(self, index, cnf = { }, **kw):
  3404.         '''Addd radio menu item at INDEX.'''
  3405.         if not cnf:
  3406.             pass
  3407.         self.insert(index, 'radiobutton', kw)
  3408.  
  3409.     
  3410.     def insert_separator(self, index, cnf = { }, **kw):
  3411.         '''Add separator at INDEX.'''
  3412.         if not cnf:
  3413.             pass
  3414.         self.insert(index, 'separator', kw)
  3415.  
  3416.     
  3417.     def delete(self, index1, index2 = None):
  3418.         '''Delete menu items between INDEX1 and INDEX2 (not included).'''
  3419.         if index2 is None:
  3420.             index2 = index1
  3421.         
  3422.         cmds = []
  3423.         num_index1 = self.index(index1)
  3424.         num_index2 = self.index(index2)
  3425.         if num_index1 is not None and num_index2 is not None:
  3426.             for i in range(num_index1, num_index2 + 1):
  3427.                 if 'command' in self.entryconfig(i):
  3428.                     c = str(self.entrycget(i, 'command'))
  3429.                     if c in self._tclCommands:
  3430.                         cmds.append(c)
  3431.                     
  3432.                 c in self._tclCommands
  3433.             
  3434.         
  3435.         self.tk.call(self._w, 'delete', index1, index2)
  3436.         for c in cmds:
  3437.             self.deletecommand(c)
  3438.         
  3439.  
  3440.     
  3441.     def entrycget(self, index, option):
  3442.         '''Return the resource value of an menu item for OPTION at INDEX.'''
  3443.         return self.tk.call(self._w, 'entrycget', index, '-' + option)
  3444.  
  3445.     
  3446.     def entryconfigure(self, index, cnf = None, **kw):
  3447.         '''Configure a menu item at INDEX.'''
  3448.         return self._configure(('entryconfigure', index), cnf, kw)
  3449.  
  3450.     entryconfig = entryconfigure
  3451.     
  3452.     def index(self, index):
  3453.         '''Return the index of a menu item identified by INDEX.'''
  3454.         i = self.tk.call(self._w, 'index', index)
  3455.         if i == 'none':
  3456.             return None
  3457.         
  3458.         return getint(i)
  3459.  
  3460.     
  3461.     def invoke(self, index):
  3462.         '''Invoke a menu item identified by INDEX and execute
  3463.         the associated command.'''
  3464.         return self.tk.call(self._w, 'invoke', index)
  3465.  
  3466.     
  3467.     def post(self, x, y):
  3468.         '''Display a menu at position X,Y.'''
  3469.         self.tk.call(self._w, 'post', x, y)
  3470.  
  3471.     
  3472.     def type(self, index):
  3473.         '''Return the type of the menu item at INDEX.'''
  3474.         return self.tk.call(self._w, 'type', index)
  3475.  
  3476.     
  3477.     def unpost(self):
  3478.         '''Unmap a menu.'''
  3479.         self.tk.call(self._w, 'unpost')
  3480.  
  3481.     
  3482.     def yposition(self, index):
  3483.         '''Return the y-position of the topmost pixel of the menu item at INDEX.'''
  3484.         return getint(self.tk.call(self._w, 'yposition', index))
  3485.  
  3486.  
  3487.  
  3488. class Menubutton(Widget):
  3489.     '''Menubutton widget, obsolete since Tk8.0.'''
  3490.     
  3491.     def __init__(self, master = None, cnf = { }, **kw):
  3492.         Widget.__init__(self, master, 'menubutton', cnf, kw)
  3493.  
  3494.  
  3495.  
  3496. class Message(Widget):
  3497.     '''Message widget to display multiline text. Obsolete since Label does it too.'''
  3498.     
  3499.     def __init__(self, master = None, cnf = { }, **kw):
  3500.         Widget.__init__(self, master, 'message', cnf, kw)
  3501.  
  3502.  
  3503.  
  3504. class Radiobutton(Widget):
  3505.     '''Radiobutton widget which shows only one of several buttons in on-state.'''
  3506.     
  3507.     def __init__(self, master = None, cnf = { }, **kw):
  3508.         '''Construct a radiobutton widget with the parent MASTER.
  3509.  
  3510.         Valid resource names: activebackground, activeforeground, anchor,
  3511.         background, bd, bg, bitmap, borderwidth, command, cursor,
  3512.         disabledforeground, fg, font, foreground, height,
  3513.         highlightbackground, highlightcolor, highlightthickness, image,
  3514.         indicatoron, justify, padx, pady, relief, selectcolor, selectimage,
  3515.         state, takefocus, text, textvariable, underline, value, variable,
  3516.         width, wraplength.'''
  3517.         Widget.__init__(self, master, 'radiobutton', cnf, kw)
  3518.  
  3519.     
  3520.     def deselect(self):
  3521.         '''Put the button in off-state.'''
  3522.         self.tk.call(self._w, 'deselect')
  3523.  
  3524.     
  3525.     def flash(self):
  3526.         '''Flash the button.'''
  3527.         self.tk.call(self._w, 'flash')
  3528.  
  3529.     
  3530.     def invoke(self):
  3531.         '''Toggle the button and invoke a command if given as resource.'''
  3532.         return self.tk.call(self._w, 'invoke')
  3533.  
  3534.     
  3535.     def select(self):
  3536.         '''Put the button in on-state.'''
  3537.         self.tk.call(self._w, 'select')
  3538.  
  3539.  
  3540.  
  3541. class Scale(Widget):
  3542.     '''Scale widget which can display a numerical scale.'''
  3543.     
  3544.     def __init__(self, master = None, cnf = { }, **kw):
  3545.         '''Construct a scale widget with the parent MASTER.
  3546.  
  3547.         Valid resource names: activebackground, background, bigincrement, bd,
  3548.         bg, borderwidth, command, cursor, digits, fg, font, foreground, from,
  3549.         highlightbackground, highlightcolor, highlightthickness, label,
  3550.         length, orient, relief, repeatdelay, repeatinterval, resolution,
  3551.         showvalue, sliderlength, sliderrelief, state, takefocus,
  3552.         tickinterval, to, troughcolor, variable, width.'''
  3553.         Widget.__init__(self, master, 'scale', cnf, kw)
  3554.  
  3555.     
  3556.     def get(self):
  3557.         '''Get the current value as integer or float.'''
  3558.         value = self.tk.call(self._w, 'get')
  3559.         
  3560.         try:
  3561.             return getint(value)
  3562.         except ValueError:
  3563.             return getdouble(value)
  3564.  
  3565.  
  3566.     
  3567.     def set(self, value):
  3568.         '''Set the value to VALUE.'''
  3569.         self.tk.call(self._w, 'set', value)
  3570.  
  3571.     
  3572.     def coords(self, value = None):
  3573.         '''Return a tuple (X,Y) of the point along the centerline of the
  3574.         trough that corresponds to VALUE or the current value if None is
  3575.         given.'''
  3576.         return self._getints(self.tk.call(self._w, 'coords', value))
  3577.  
  3578.     
  3579.     def identify(self, x, y):
  3580.         '''Return where the point X,Y lies. Valid return values are "slider",
  3581.         "though1" and "though2".'''
  3582.         return self.tk.call(self._w, 'identify', x, y)
  3583.  
  3584.  
  3585.  
  3586. class Scrollbar(Widget):
  3587.     '''Scrollbar widget which displays a slider at a certain position.'''
  3588.     
  3589.     def __init__(self, master = None, cnf = { }, **kw):
  3590.         '''Construct a scrollbar widget with the parent MASTER.
  3591.  
  3592.         Valid resource names: activebackground, activerelief,
  3593.         background, bd, bg, borderwidth, command, cursor,
  3594.         elementborderwidth, highlightbackground,
  3595.         highlightcolor, highlightthickness, jump, orient,
  3596.         relief, repeatdelay, repeatinterval, takefocus,
  3597.         troughcolor, width.'''
  3598.         Widget.__init__(self, master, 'scrollbar', cnf, kw)
  3599.  
  3600.     
  3601.     def activate(self, index):
  3602.         '''Display the element at INDEX with activebackground and activerelief.
  3603.         INDEX can be "arrow1","slider" or "arrow2".'''
  3604.         self.tk.call(self._w, 'activate', index)
  3605.  
  3606.     
  3607.     def delta(self, deltax, deltay):
  3608.         '''Return the fractional change of the scrollbar setting if it
  3609.         would be moved by DELTAX or DELTAY pixels.'''
  3610.         return getdouble(self.tk.call(self._w, 'delta', deltax, deltay))
  3611.  
  3612.     
  3613.     def fraction(self, x, y):
  3614.         '''Return the fractional value which corresponds to a slider
  3615.         position of X,Y.'''
  3616.         return getdouble(self.tk.call(self._w, 'fraction', x, y))
  3617.  
  3618.     
  3619.     def identify(self, x, y):
  3620.         '''Return the element under position X,Y as one of
  3621.         "arrow1","slider","arrow2" or "".'''
  3622.         return self.tk.call(self._w, 'identify', x, y)
  3623.  
  3624.     
  3625.     def get(self):
  3626.         '''Return the current fractional values (upper and lower end)
  3627.         of the slider position.'''
  3628.         return self._getdoubles(self.tk.call(self._w, 'get'))
  3629.  
  3630.     
  3631.     def set(self, *args):
  3632.         '''Set the fractional values of the slider position (upper and
  3633.         lower ends as value between 0 and 1).'''
  3634.         self.tk.call((self._w, 'set') + args)
  3635.  
  3636.  
  3637.  
  3638. class Text(Widget):
  3639.     '''Text widget which can display text in various forms.'''
  3640.     
  3641.     def __init__(self, master = None, cnf = { }, **kw):
  3642.         '''Construct a text widget with the parent MASTER.
  3643.  
  3644.         STANDARD OPTIONS
  3645.  
  3646.             background, borderwidth, cursor,
  3647.             exportselection, font, foreground,
  3648.             highlightbackground, highlightcolor,
  3649.             highlightthickness, insertbackground,
  3650.             insertborderwidth, insertofftime,
  3651.             insertontime, insertwidth, padx, pady,
  3652.             relief, selectbackground,
  3653.             selectborderwidth, selectforeground,
  3654.             setgrid, takefocus,
  3655.             xscrollcommand, yscrollcommand,
  3656.  
  3657.         WIDGET-SPECIFIC OPTIONS
  3658.  
  3659.             autoseparators, height, maxundo,
  3660.             spacing1, spacing2, spacing3,
  3661.             state, tabs, undo, width, wrap,
  3662.  
  3663.         '''
  3664.         Widget.__init__(self, master, 'text', cnf, kw)
  3665.  
  3666.     
  3667.     def bbox(self, *args):
  3668.         '''Return a tuple of (x,y,width,height) which gives the bounding
  3669.         box of the visible part of the character at the index in ARGS.'''
  3670.         if not self._getints(self.tk.call((self._w, 'bbox') + args)):
  3671.             pass
  3672.  
  3673.     
  3674.     def tk_textSelectTo(self, index):
  3675.         self.tk.call('tk_textSelectTo', self._w, index)
  3676.  
  3677.     
  3678.     def tk_textBackspace(self):
  3679.         self.tk.call('tk_textBackspace', self._w)
  3680.  
  3681.     
  3682.     def tk_textIndexCloser(self, a, b, c):
  3683.         self.tk.call('tk_textIndexCloser', self._w, a, b, c)
  3684.  
  3685.     
  3686.     def tk_textResetAnchor(self, index):
  3687.         self.tk.call('tk_textResetAnchor', self._w, index)
  3688.  
  3689.     
  3690.     def compare(self, index1, op, index2):
  3691.         '''Return whether between index INDEX1 and index INDEX2 the
  3692.         relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.'''
  3693.         return self.tk.getboolean(self.tk.call(self._w, 'compare', index1, op, index2))
  3694.  
  3695.     
  3696.     def debug(self, boolean = None):
  3697.         '''Turn on the internal consistency checks of the B-Tree inside the text
  3698.         widget according to BOOLEAN.'''
  3699.         return self.tk.getboolean(self.tk.call(self._w, 'debug', boolean))
  3700.  
  3701.     
  3702.     def delete(self, index1, index2 = None):
  3703.         '''Delete the characters between INDEX1 and INDEX2 (not included).'''
  3704.         self.tk.call(self._w, 'delete', index1, index2)
  3705.  
  3706.     
  3707.     def dlineinfo(self, index):
  3708.         '''Return tuple (x,y,width,height,baseline) giving the bounding box
  3709.         and baseline position of the visible part of the line containing
  3710.         the character at INDEX.'''
  3711.         return self._getints(self.tk.call(self._w, 'dlineinfo', index))
  3712.  
  3713.     
  3714.     def dump(self, index1, index2 = None, command = None, **kw):
  3715.         """Return the contents of the widget between index1 and index2.
  3716.  
  3717.         The type of contents returned in filtered based on the keyword
  3718.         parameters; if 'all', 'image', 'mark', 'tag', 'text', or 'window' are
  3719.         given and true, then the corresponding items are returned. The result
  3720.         is a list of triples of the form (key, value, index). If none of the
  3721.         keywords are true then 'all' is used by default.
  3722.  
  3723.         If the 'command' argument is given, it is called once for each element
  3724.         of the list of triples, with the values of each triple serving as the
  3725.         arguments to the function. In this case the list is not returned."""
  3726.         args = []
  3727.         func_name = None
  3728.         result = None
  3729.         if not command:
  3730.             result = []
  3731.             
  3732.             def append_triple(key, value, index, result = result):
  3733.                 result.append((key, value, index))
  3734.  
  3735.             command = append_triple
  3736.         
  3737.         
  3738.         try:
  3739.             if not isinstance(command, str):
  3740.                 func_name = command = self._register(command)
  3741.             
  3742.             args += [
  3743.                 '-command',
  3744.                 command]
  3745.             for key in kw:
  3746.                 if kw[key]:
  3747.                     args.append('-' + key)
  3748.                     continue
  3749.             
  3750.             args.append(index1)
  3751.             if index2:
  3752.                 args.append(index2)
  3753.             
  3754.             self.tk.call(self._w, 'dump', *args)
  3755.             return result
  3756.         finally:
  3757.             if func_name:
  3758.                 self.deletecommand(func_name)
  3759.             
  3760.  
  3761.  
  3762.     
  3763.     def edit(self, *args):
  3764.         '''Internal method
  3765.  
  3766.         This method controls the undo mechanism and
  3767.         the modified flag. The exact behavior of the
  3768.         command depends on the option argument that
  3769.         follows the edit argument. The following forms
  3770.         of the command are currently supported:
  3771.  
  3772.         edit_modified, edit_redo, edit_reset, edit_separator
  3773.         and edit_undo
  3774.  
  3775.         '''
  3776.         return self.tk.call((self._w, 'edit') + args)
  3777.  
  3778.     
  3779.     def edit_modified(self, arg = None):
  3780.         '''Get or Set the modified flag
  3781.  
  3782.         If arg is not specified, returns the modified
  3783.         flag of the widget. The insert, delete, edit undo and
  3784.         edit redo commands or the user can set or clear the
  3785.         modified flag. If boolean is specified, sets the
  3786.         modified flag of the widget to arg.
  3787.         '''
  3788.         return self.edit('modified', arg)
  3789.  
  3790.     
  3791.     def edit_redo(self):
  3792.         '''Redo the last undone edit
  3793.  
  3794.         When the undo option is true, reapplies the last
  3795.         undone edits provided no other edits were done since
  3796.         then. Generates an error when the redo stack is empty.
  3797.         Does nothing when the undo option is false.
  3798.         '''
  3799.         return self.edit('redo')
  3800.  
  3801.     
  3802.     def edit_reset(self):
  3803.         '''Clears the undo and redo stacks
  3804.         '''
  3805.         return self.edit('reset')
  3806.  
  3807.     
  3808.     def edit_separator(self):
  3809.         '''Inserts a separator (boundary) on the undo stack.
  3810.  
  3811.         Does nothing when the undo option is false
  3812.         '''
  3813.         return self.edit('separator')
  3814.  
  3815.     
  3816.     def edit_undo(self):
  3817.         '''Undoes the last edit action
  3818.  
  3819.         If the undo option is true. An edit action is defined
  3820.         as all the insert and delete commands that are recorded
  3821.         on the undo stack in between two separators. Generates
  3822.         an error when the undo stack is empty. Does nothing
  3823.         when the undo option is false
  3824.         '''
  3825.         return self.edit('undo')
  3826.  
  3827.     
  3828.     def get(self, index1, index2 = None):
  3829.         '''Return the text from INDEX1 to INDEX2 (not included).'''
  3830.         return self.tk.call(self._w, 'get', index1, index2)
  3831.  
  3832.     
  3833.     def image_cget(self, index, option):
  3834.         '''Return the value of OPTION of an embedded image at INDEX.'''
  3835.         if option[:1] != '-':
  3836.             option = '-' + option
  3837.         
  3838.         if option[-1:] == '_':
  3839.             option = option[:-1]
  3840.         
  3841.         return self.tk.call(self._w, 'image', 'cget', index, option)
  3842.  
  3843.     
  3844.     def image_configure(self, index, cnf = None, **kw):
  3845.         '''Configure an embedded image at INDEX.'''
  3846.         return self._configure(('image', 'configure', index), cnf, kw)
  3847.  
  3848.     
  3849.     def image_create(self, index, cnf = { }, **kw):
  3850.         '''Create an embedded image at INDEX.'''
  3851.         return self.tk.call(self._w, 'image', 'create', index, *self._options(cnf, kw))
  3852.  
  3853.     
  3854.     def image_names(self):
  3855.         '''Return all names of embedded images in this widget.'''
  3856.         return self.tk.call(self._w, 'image', 'names')
  3857.  
  3858.     
  3859.     def index(self, index):
  3860.         '''Return the index in the form line.char for INDEX.'''
  3861.         return self.tk.call(self._w, 'index', index)
  3862.  
  3863.     
  3864.     def insert(self, index, chars, *args):
  3865.         '''Insert CHARS before the characters at INDEX. An additional
  3866.         tag can be given in ARGS. Additional CHARS and tags can follow in ARGS.'''
  3867.         self.tk.call((self._w, 'insert', index, chars) + args)
  3868.  
  3869.     
  3870.     def mark_gravity(self, markName, direction = None):
  3871.         '''Change the gravity of a mark MARKNAME to DIRECTION (LEFT or RIGHT).
  3872.         Return the current value if None is given for DIRECTION.'''
  3873.         return self.tk.call((self._w, 'mark', 'gravity', markName, direction))
  3874.  
  3875.     
  3876.     def mark_names(self):
  3877.         '''Return all mark names.'''
  3878.         return self.tk.splitlist(self.tk.call(self._w, 'mark', 'names'))
  3879.  
  3880.     
  3881.     def mark_set(self, markName, index):
  3882.         '''Set mark MARKNAME before the character at INDEX.'''
  3883.         self.tk.call(self._w, 'mark', 'set', markName, index)
  3884.  
  3885.     
  3886.     def mark_unset(self, *markNames):
  3887.         '''Delete all marks in MARKNAMES.'''
  3888.         self.tk.call((self._w, 'mark', 'unset') + markNames)
  3889.  
  3890.     
  3891.     def mark_next(self, index):
  3892.         '''Return the name of the next mark after INDEX.'''
  3893.         if not self.tk.call(self._w, 'mark', 'next', index):
  3894.             pass
  3895.  
  3896.     
  3897.     def mark_previous(self, index):
  3898.         '''Return the name of the previous mark before INDEX.'''
  3899.         if not self.tk.call(self._w, 'mark', 'previous', index):
  3900.             pass
  3901.  
  3902.     
  3903.     def scan_mark(self, x, y):
  3904.         '''Remember the current X, Y coordinates.'''
  3905.         self.tk.call(self._w, 'scan', 'mark', x, y)
  3906.  
  3907.     
  3908.     def scan_dragto(self, x, y):
  3909.         '''Adjust the view of the text to 10 times the
  3910.         difference between X and Y and the coordinates given in
  3911.         scan_mark.'''
  3912.         self.tk.call(self._w, 'scan', 'dragto', x, y)
  3913.  
  3914.     
  3915.     def search(self, pattern, index, stopindex = None, forwards = None, backwards = None, exact = None, regexp = None, nocase = None, count = None):
  3916.         '''Search PATTERN beginning from INDEX until STOPINDEX.
  3917.         Return the index of the first character of a match or an empty string.'''
  3918.         args = [
  3919.             self._w,
  3920.             'search']
  3921.         if forwards:
  3922.             args.append('-forwards')
  3923.         
  3924.         if backwards:
  3925.             args.append('-backwards')
  3926.         
  3927.         if exact:
  3928.             args.append('-exact')
  3929.         
  3930.         if regexp:
  3931.             args.append('-regexp')
  3932.         
  3933.         if nocase:
  3934.             args.append('-nocase')
  3935.         
  3936.         if count:
  3937.             args.append('-count')
  3938.             args.append(count)
  3939.         
  3940.         if pattern[0] == '-':
  3941.             args.append('--')
  3942.         
  3943.         args.append(pattern)
  3944.         args.append(index)
  3945.         if stopindex:
  3946.             args.append(stopindex)
  3947.         
  3948.         return self.tk.call(tuple(args))
  3949.  
  3950.     
  3951.     def see(self, index):
  3952.         '''Scroll such that the character at INDEX is visible.'''
  3953.         self.tk.call(self._w, 'see', index)
  3954.  
  3955.     
  3956.     def tag_add(self, tagName, index1, *args):
  3957.         '''Add tag TAGNAME to all characters between INDEX1 and index2 in ARGS.
  3958.         Additional pairs of indices may follow in ARGS.'''
  3959.         self.tk.call((self._w, 'tag', 'add', tagName, index1) + args)
  3960.  
  3961.     
  3962.     def tag_unbind(self, tagName, sequence, funcid = None):
  3963.         '''Unbind for all characters with TAGNAME for event SEQUENCE  the
  3964.         function identified with FUNCID.'''
  3965.         self.tk.call(self._w, 'tag', 'bind', tagName, sequence, '')
  3966.         if funcid:
  3967.             self.deletecommand(funcid)
  3968.         
  3969.  
  3970.     
  3971.     def tag_bind(self, tagName, sequence, func, add = None):
  3972.         '''Bind to all characters with TAGNAME at event SEQUENCE a call to function FUNC.
  3973.  
  3974.         An additional boolean parameter ADD specifies whether FUNC will be
  3975.         called additionally to the other bound function or whether it will
  3976.         replace the previous function. See bind for the return value.'''
  3977.         return self._bind((self._w, 'tag', 'bind', tagName), sequence, func, add)
  3978.  
  3979.     
  3980.     def tag_cget(self, tagName, option):
  3981.         '''Return the value of OPTION for tag TAGNAME.'''
  3982.         if option[:1] != '-':
  3983.             option = '-' + option
  3984.         
  3985.         if option[-1:] == '_':
  3986.             option = option[:-1]
  3987.         
  3988.         return self.tk.call(self._w, 'tag', 'cget', tagName, option)
  3989.  
  3990.     
  3991.     def tag_configure(self, tagName, cnf = None, **kw):
  3992.         '''Configure a tag TAGNAME.'''
  3993.         return self._configure(('tag', 'configure', tagName), cnf, kw)
  3994.  
  3995.     tag_config = tag_configure
  3996.     
  3997.     def tag_delete(self, *tagNames):
  3998.         '''Delete all tags in TAGNAMES.'''
  3999.         self.tk.call((self._w, 'tag', 'delete') + tagNames)
  4000.  
  4001.     
  4002.     def tag_lower(self, tagName, belowThis = None):
  4003.         '''Change the priority of tag TAGNAME such that it is lower
  4004.         than the priority of BELOWTHIS.'''
  4005.         self.tk.call(self._w, 'tag', 'lower', tagName, belowThis)
  4006.  
  4007.     
  4008.     def tag_names(self, index = None):
  4009.         '''Return a list of all tag names.'''
  4010.         return self.tk.splitlist(self.tk.call(self._w, 'tag', 'names', index))
  4011.  
  4012.     
  4013.     def tag_nextrange(self, tagName, index1, index2 = None):
  4014.         '''Return a list of start and end index for the first sequence of
  4015.         characters between INDEX1 and INDEX2 which all have tag TAGNAME.
  4016.         The text is searched forward from INDEX1.'''
  4017.         return self.tk.splitlist(self.tk.call(self._w, 'tag', 'nextrange', tagName, index1, index2))
  4018.  
  4019.     
  4020.     def tag_prevrange(self, tagName, index1, index2 = None):
  4021.         '''Return a list of start and end index for the first sequence of
  4022.         characters between INDEX1 and INDEX2 which all have tag TAGNAME.
  4023.         The text is searched backwards from INDEX1.'''
  4024.         return self.tk.splitlist(self.tk.call(self._w, 'tag', 'prevrange', tagName, index1, index2))
  4025.  
  4026.     
  4027.     def tag_raise(self, tagName, aboveThis = None):
  4028.         '''Change the priority of tag TAGNAME such that it is higher
  4029.         than the priority of ABOVETHIS.'''
  4030.         self.tk.call(self._w, 'tag', 'raise', tagName, aboveThis)
  4031.  
  4032.     
  4033.     def tag_ranges(self, tagName):
  4034.         '''Return a list of ranges of text which have tag TAGNAME.'''
  4035.         return self.tk.splitlist(self.tk.call(self._w, 'tag', 'ranges', tagName))
  4036.  
  4037.     
  4038.     def tag_remove(self, tagName, index1, index2 = None):
  4039.         '''Remove tag TAGNAME from all characters between INDEX1 and INDEX2.'''
  4040.         self.tk.call(self._w, 'tag', 'remove', tagName, index1, index2)
  4041.  
  4042.     
  4043.     def window_cget(self, index, option):
  4044.         '''Return the value of OPTION of an embedded window at INDEX.'''
  4045.         if option[:1] != '-':
  4046.             option = '-' + option
  4047.         
  4048.         if option[-1:] == '_':
  4049.             option = option[:-1]
  4050.         
  4051.         return self.tk.call(self._w, 'window', 'cget', index, option)
  4052.  
  4053.     
  4054.     def window_configure(self, index, cnf = None, **kw):
  4055.         '''Configure an embedded window at INDEX.'''
  4056.         return self._configure(('window', 'configure', index), cnf, kw)
  4057.  
  4058.     window_config = window_configure
  4059.     
  4060.     def window_create(self, index, cnf = { }, **kw):
  4061.         '''Create a window at INDEX.'''
  4062.         self.tk.call((self._w, 'window', 'create', index) + self._options(cnf, kw))
  4063.  
  4064.     
  4065.     def window_names(self):
  4066.         '''Return all names of embedded windows in this widget.'''
  4067.         return self.tk.splitlist(self.tk.call(self._w, 'window', 'names'))
  4068.  
  4069.     
  4070.     def xview(self, *what):
  4071.         '''Query and change horizontal position of the view.'''
  4072.         if not what:
  4073.             return self._getdoubles(self.tk.call(self._w, 'xview'))
  4074.         
  4075.         self.tk.call((self._w, 'xview') + what)
  4076.  
  4077.     
  4078.     def xview_moveto(self, fraction):
  4079.         '''Adjusts the view in the window so that FRACTION of the
  4080.         total width of the canvas is off-screen to the left.'''
  4081.         self.tk.call(self._w, 'xview', 'moveto', fraction)
  4082.  
  4083.     
  4084.     def xview_scroll(self, number, what):
  4085.         '''Shift the x-view according to NUMBER which is measured
  4086.         in "units" or "pages" (WHAT).'''
  4087.         self.tk.call(self._w, 'xview', 'scroll', number, what)
  4088.  
  4089.     
  4090.     def yview(self, *what):
  4091.         '''Query and change vertical position of the view.'''
  4092.         if not what:
  4093.             return self._getdoubles(self.tk.call(self._w, 'yview'))
  4094.         
  4095.         self.tk.call((self._w, 'yview') + what)
  4096.  
  4097.     
  4098.     def yview_moveto(self, fraction):
  4099.         '''Adjusts the view in the window so that FRACTION of the
  4100.         total height of the canvas is off-screen to the top.'''
  4101.         self.tk.call(self._w, 'yview', 'moveto', fraction)
  4102.  
  4103.     
  4104.     def yview_scroll(self, number, what):
  4105.         '''Shift the y-view according to NUMBER which is measured
  4106.         in "units" or "pages" (WHAT).'''
  4107.         self.tk.call(self._w, 'yview', 'scroll', number, what)
  4108.  
  4109.     
  4110.     def yview_pickplace(self, *what):
  4111.         '''Obsolete function, use see.'''
  4112.         self.tk.call((self._w, 'yview', '-pickplace') + what)
  4113.  
  4114.  
  4115.  
  4116. class _setit:
  4117.     '''Internal class. It wraps the command in the widget OptionMenu.'''
  4118.     
  4119.     def __init__(self, var, value, callback = None):
  4120.         self._setit__value = value
  4121.         self._setit__var = var
  4122.         self._setit__callback = callback
  4123.  
  4124.     
  4125.     def __call__(self, *args):
  4126.         self._setit__var.set(self._setit__value)
  4127.         if self._setit__callback:
  4128.             self._setit__callback(self._setit__value, *args)
  4129.         
  4130.  
  4131.  
  4132.  
  4133. class OptionMenu(Menubutton):
  4134.     '''OptionMenu which allows the user to select a value from a menu.'''
  4135.     
  4136.     def __init__(self, master, variable, value, *values, **kwargs):
  4137.         '''Construct an optionmenu widget with the parent MASTER, with
  4138.         the resource textvariable set to VARIABLE, the initially selected
  4139.         value VALUE, the other menu values VALUES and an additional
  4140.         keyword argument command.'''
  4141.         kw = {
  4142.             'borderwidth': 2,
  4143.             'textvariable': variable,
  4144.             'indicatoron': 1,
  4145.             'relief': RAISED,
  4146.             'anchor': 'c',
  4147.             'highlightthickness': 2 }
  4148.         Widget.__init__(self, master, 'menubutton', kw)
  4149.         self.widgetName = 'tk_optionMenu'
  4150.         menu = self._OptionMenu__menu = Menu(self, name = 'menu', tearoff = 0)
  4151.         self.menuname = menu._w
  4152.         callback = kwargs.get('command')
  4153.         if kwargs.has_key('command'):
  4154.             del kwargs['command']
  4155.         
  4156.         if kwargs:
  4157.             raise TclError, 'unknown option -' + kwargs.keys()[0]
  4158.         
  4159.         menu.add_command(label = value, command = _setit(variable, value, callback))
  4160.         for v in values:
  4161.             menu.add_command(label = v, command = _setit(variable, v, callback))
  4162.         
  4163.         self['menu'] = menu
  4164.  
  4165.     
  4166.     def __getitem__(self, name):
  4167.         if name == 'menu':
  4168.             return self._OptionMenu__menu
  4169.         
  4170.         return Widget.__getitem__(self, name)
  4171.  
  4172.     
  4173.     def destroy(self):
  4174.         '''Destroy this widget and the associated menu.'''
  4175.         Menubutton.destroy(self)
  4176.         self._OptionMenu__menu = None
  4177.  
  4178.  
  4179.  
  4180. class Image:
  4181.     '''Base class for images.'''
  4182.     _last_id = 0
  4183.     
  4184.     def __init__(self, imgtype, name = None, cnf = { }, master = None, **kw):
  4185.         self.name = None
  4186.         if not master:
  4187.             master = _default_root
  4188.             if not master:
  4189.                 raise RuntimeError, 'Too early to create image'
  4190.             
  4191.         
  4192.         self.tk = master.tk
  4193.         if not name:
  4194.             Image._last_id += 1
  4195.             name = 'pyimage%r' % (Image._last_id,)
  4196.             if name[0] == '-':
  4197.                 name = '_' + name[1:]
  4198.             
  4199.         
  4200.         if kw and cnf:
  4201.             cnf = _cnfmerge((cnf, kw))
  4202.         elif kw:
  4203.             cnf = kw
  4204.         
  4205.         options = ()
  4206.         for k, v in cnf.items():
  4207.             if callable(v):
  4208.                 v = self._register(v)
  4209.             
  4210.             options = options + ('-' + k, v)
  4211.         
  4212.         self.tk.call(('image', 'create', imgtype, name) + options)
  4213.         self.name = name
  4214.  
  4215.     
  4216.     def __str__(self):
  4217.         return self.name
  4218.  
  4219.     
  4220.     def __del__(self):
  4221.         if self.name:
  4222.             
  4223.             try:
  4224.                 self.tk.call('image', 'delete', self.name)
  4225.             except TclError:
  4226.                 pass
  4227.             except:
  4228.                 None<EXCEPTION MATCH>TclError
  4229.             
  4230.  
  4231.         None<EXCEPTION MATCH>TclError
  4232.  
  4233.     
  4234.     def __setitem__(self, key, value):
  4235.         self.tk.call(self.name, 'configure', '-' + key, value)
  4236.  
  4237.     
  4238.     def __getitem__(self, key):
  4239.         return self.tk.call(self.name, 'configure', '-' + key)
  4240.  
  4241.     
  4242.     def configure(self, **kw):
  4243.         '''Configure the image.'''
  4244.         res = ()
  4245.         for k, v in _cnfmerge(kw).items():
  4246.             if v is not None:
  4247.                 if k[-1] == '_':
  4248.                     k = k[:-1]
  4249.                 
  4250.                 if callable(v):
  4251.                     v = self._register(v)
  4252.                 
  4253.                 res = res + ('-' + k, v)
  4254.                 continue
  4255.         
  4256.         self.tk.call((self.name, 'config') + res)
  4257.  
  4258.     config = configure
  4259.     
  4260.     def height(self):
  4261.         '''Return the height of the image.'''
  4262.         return getint(self.tk.call('image', 'height', self.name))
  4263.  
  4264.     
  4265.     def type(self):
  4266.         '''Return the type of the imgage, e.g. "photo" or "bitmap".'''
  4267.         return self.tk.call('image', 'type', self.name)
  4268.  
  4269.     
  4270.     def width(self):
  4271.         '''Return the width of the image.'''
  4272.         return getint(self.tk.call('image', 'width', self.name))
  4273.  
  4274.  
  4275.  
  4276. class PhotoImage(Image):
  4277.     '''Widget which can display colored images in GIF, PPM/PGM format.'''
  4278.     
  4279.     def __init__(self, name = None, cnf = { }, master = None, **kw):
  4280.         '''Create an image with NAME.
  4281.  
  4282.         Valid resource names: data, format, file, gamma, height, palette,
  4283.         width.'''
  4284.         Image.__init__(self, 'photo', name, cnf, master, **kw)
  4285.  
  4286.     
  4287.     def blank(self):
  4288.         '''Display a transparent image.'''
  4289.         self.tk.call(self.name, 'blank')
  4290.  
  4291.     
  4292.     def cget(self, option):
  4293.         '''Return the value of OPTION.'''
  4294.         return self.tk.call(self.name, 'cget', '-' + option)
  4295.  
  4296.     
  4297.     def __getitem__(self, key):
  4298.         return self.tk.call(self.name, 'cget', '-' + key)
  4299.  
  4300.     
  4301.     def copy(self):
  4302.         '''Return a new PhotoImage with the same image as this widget.'''
  4303.         destImage = PhotoImage()
  4304.         self.tk.call(destImage, 'copy', self.name)
  4305.         return destImage
  4306.  
  4307.     
  4308.     def zoom(self, x, y = ''):
  4309.         '''Return a new PhotoImage with the same image as this widget
  4310.         but zoom it with X and Y.'''
  4311.         destImage = PhotoImage()
  4312.         if y == '':
  4313.             y = x
  4314.         
  4315.         self.tk.call(destImage, 'copy', self.name, '-zoom', x, y)
  4316.         return destImage
  4317.  
  4318.     
  4319.     def subsample(self, x, y = ''):
  4320.         '''Return a new PhotoImage based on the same image as this widget
  4321.         but use only every Xth or Yth pixel.'''
  4322.         destImage = PhotoImage()
  4323.         if y == '':
  4324.             y = x
  4325.         
  4326.         self.tk.call(destImage, 'copy', self.name, '-subsample', x, y)
  4327.         return destImage
  4328.  
  4329.     
  4330.     def get(self, x, y):
  4331.         '''Return the color (red, green, blue) of the pixel at X,Y.'''
  4332.         return self.tk.call(self.name, 'get', x, y)
  4333.  
  4334.     
  4335.     def put(self, data, to = None):
  4336.         '''Put row formated colors to image starting from
  4337.         position TO, e.g. image.put("{red green} {blue yellow}", to=(4,6))'''
  4338.         args = (self.name, 'put', data)
  4339.         if to:
  4340.             if to[0] == '-to':
  4341.                 to = to[1:]
  4342.             
  4343.             args = args + ('-to',) + tuple(to)
  4344.         
  4345.         self.tk.call(args)
  4346.  
  4347.     
  4348.     def write(self, filename, format = None, from_coords = None):
  4349.         '''Write image to file FILENAME in FORMAT starting from
  4350.         position FROM_COORDS.'''
  4351.         args = (self.name, 'write', filename)
  4352.         if format:
  4353.             args = args + ('-format', format)
  4354.         
  4355.         if from_coords:
  4356.             args = args + ('-from',) + tuple(from_coords)
  4357.         
  4358.         self.tk.call(args)
  4359.  
  4360.  
  4361.  
  4362. class BitmapImage(Image):
  4363.     '''Widget which can display a bitmap.'''
  4364.     
  4365.     def __init__(self, name = None, cnf = { }, master = None, **kw):
  4366.         '''Create a bitmap with NAME.
  4367.  
  4368.         Valid resource names: background, data, file, foreground, maskdata, maskfile.'''
  4369.         Image.__init__(self, 'bitmap', name, cnf, master, **kw)
  4370.  
  4371.  
  4372.  
  4373. def image_names():
  4374.     return _default_root.tk.call('image', 'names')
  4375.  
  4376.  
  4377. def image_types():
  4378.     return _default_root.tk.call('image', 'types')
  4379.  
  4380.  
  4381. class Spinbox(Widget):
  4382.     '''spinbox widget.'''
  4383.     
  4384.     def __init__(self, master = None, cnf = { }, **kw):
  4385.         '''Construct a spinbox widget with the parent MASTER.
  4386.  
  4387.         STANDARD OPTIONS
  4388.  
  4389.             activebackground, background, borderwidth,
  4390.             cursor, exportselection, font, foreground,
  4391.             highlightbackground, highlightcolor,
  4392.             highlightthickness, insertbackground,
  4393.             insertborderwidth, insertofftime,
  4394.             insertontime, insertwidth, justify, relief,
  4395.             repeatdelay, repeatinterval,
  4396.             selectbackground, selectborderwidth
  4397.             selectforeground, takefocus, textvariable
  4398.             xscrollcommand.
  4399.  
  4400.         WIDGET-SPECIFIC OPTIONS
  4401.  
  4402.             buttonbackground, buttoncursor,
  4403.             buttondownrelief, buttonuprelief,
  4404.             command, disabledbackground,
  4405.             disabledforeground, format, from,
  4406.             invalidcommand, increment,
  4407.             readonlybackground, state, to,
  4408.             validate, validatecommand values,
  4409.             width, wrap,
  4410.         '''
  4411.         Widget.__init__(self, master, 'spinbox', cnf, kw)
  4412.  
  4413.     
  4414.     def bbox(self, index):
  4415.         '''Return a tuple of X1,Y1,X2,Y2 coordinates for a
  4416.         rectangle which encloses the character given by index.
  4417.  
  4418.         The first two elements of the list give the x and y
  4419.         coordinates of the upper-left corner of the screen
  4420.         area covered by the character (in pixels relative
  4421.         to the widget) and the last two elements give the
  4422.         width and height of the character, in pixels. The
  4423.         bounding box may refer to a region outside the
  4424.         visible area of the window.
  4425.         '''
  4426.         return self.tk.call(self._w, 'bbox', index)
  4427.  
  4428.     
  4429.     def delete(self, first, last = None):
  4430.         """Delete one or more elements of the spinbox.
  4431.  
  4432.         First is the index of the first character to delete,
  4433.         and last is the index of the character just after
  4434.         the last one to delete. If last isn't specified it
  4435.         defaults to first+1, i.e. a single character is
  4436.         deleted.  This command returns an empty string.
  4437.         """
  4438.         return self.tk.call(self._w, 'delete', first, last)
  4439.  
  4440.     
  4441.     def get(self):
  4442.         """Returns the spinbox's string"""
  4443.         return self.tk.call(self._w, 'get')
  4444.  
  4445.     
  4446.     def icursor(self, index):
  4447.         '''Alter the position of the insertion cursor.
  4448.  
  4449.         The insertion cursor will be displayed just before
  4450.         the character given by index. Returns an empty string
  4451.         '''
  4452.         return self.tk.call(self._w, 'icursor', index)
  4453.  
  4454.     
  4455.     def identify(self, x, y):
  4456.         '''Returns the name of the widget at position x, y
  4457.  
  4458.         Return value is one of: none, buttondown, buttonup, entry
  4459.         '''
  4460.         return self.tk.call(self._w, 'identify', x, y)
  4461.  
  4462.     
  4463.     def index(self, index):
  4464.         '''Returns the numerical index corresponding to index
  4465.         '''
  4466.         return self.tk.call(self._w, 'index', index)
  4467.  
  4468.     
  4469.     def insert(self, index, s):
  4470.         '''Insert string s at index
  4471.  
  4472.          Returns an empty string.
  4473.         '''
  4474.         return self.tk.call(self._w, 'insert', index, s)
  4475.  
  4476.     
  4477.     def invoke(self, element):
  4478.         '''Causes the specified element to be invoked
  4479.  
  4480.         The element could be buttondown or buttonup
  4481.         triggering the action associated with it.
  4482.         '''
  4483.         return self.tk.call(self._w, 'invoke', element)
  4484.  
  4485.     
  4486.     def scan(self, *args):
  4487.         '''Internal function.'''
  4488.         if not self._getints(self.tk.call((self._w, 'scan') + args)):
  4489.             pass
  4490.         return ()
  4491.  
  4492.     
  4493.     def scan_mark(self, x):
  4494.         '''Records x and the current view in the spinbox window;
  4495.  
  4496.         used in conjunction with later scan dragto commands.
  4497.         Typically this command is associated with a mouse button
  4498.         press in the widget. It returns an empty string.
  4499.         '''
  4500.         return self.scan('mark', x)
  4501.  
  4502.     
  4503.     def scan_dragto(self, x):
  4504.         '''Compute the difference between the given x argument
  4505.         and the x argument to the last scan mark command
  4506.  
  4507.         It then adjusts the view left or right by 10 times the
  4508.         difference in x-coordinates. This command is typically
  4509.         associated with mouse motion events in the widget, to
  4510.         produce the effect of dragging the spinbox at high speed
  4511.         through the window. The return value is an empty string.
  4512.         '''
  4513.         return self.scan('dragto', x)
  4514.  
  4515.     
  4516.     def selection(self, *args):
  4517.         '''Internal function.'''
  4518.         if not self._getints(self.tk.call((self._w, 'selection') + args)):
  4519.             pass
  4520.         return ()
  4521.  
  4522.     
  4523.     def selection_adjust(self, index):
  4524.         """Locate the end of the selection nearest to the character
  4525.         given by index,
  4526.  
  4527.         Then adjust that end of the selection to be at index
  4528.         (i.e including but not going beyond index). The other
  4529.         end of the selection is made the anchor point for future
  4530.         select to commands. If the selection isn't currently in
  4531.         the spinbox, then a new selection is created to include
  4532.         the characters between index and the most recent selection
  4533.         anchor point, inclusive. Returns an empty string.
  4534.         """
  4535.         return self.selection('adjust', index)
  4536.  
  4537.     
  4538.     def selection_clear(self):
  4539.         """Clear the selection
  4540.  
  4541.         If the selection isn't in this widget then the
  4542.         command has no effect. Returns an empty string.
  4543.         """
  4544.         return self.selection('clear')
  4545.  
  4546.     
  4547.     def selection_element(self, element = None):
  4548.         '''Sets or gets the currently selected element.
  4549.  
  4550.         If a spinbutton element is specified, it will be
  4551.         displayed depressed
  4552.         '''
  4553.         return self.selection('element', element)
  4554.  
  4555.  
  4556.  
  4557. class LabelFrame(Widget):
  4558.     '''labelframe widget.'''
  4559.     
  4560.     def __init__(self, master = None, cnf = { }, **kw):
  4561.         '''Construct a labelframe widget with the parent MASTER.
  4562.  
  4563.         STANDARD OPTIONS
  4564.  
  4565.             borderwidth, cursor, font, foreground,
  4566.             highlightbackground, highlightcolor,
  4567.             highlightthickness, padx, pady, relief,
  4568.             takefocus, text
  4569.  
  4570.         WIDGET-SPECIFIC OPTIONS
  4571.  
  4572.             background, class, colormap, container,
  4573.             height, labelanchor, labelwidget,
  4574.             visual, width
  4575.         '''
  4576.         Widget.__init__(self, master, 'labelframe', cnf, kw)
  4577.  
  4578.  
  4579.  
  4580. class PanedWindow(Widget):
  4581.     '''panedwindow widget.'''
  4582.     
  4583.     def __init__(self, master = None, cnf = { }, **kw):
  4584.         '''Construct a panedwindow widget with the parent MASTER.
  4585.  
  4586.         STANDARD OPTIONS
  4587.  
  4588.             background, borderwidth, cursor, height,
  4589.             orient, relief, width
  4590.  
  4591.         WIDGET-SPECIFIC OPTIONS
  4592.  
  4593.             handlepad, handlesize, opaqueresize,
  4594.             sashcursor, sashpad, sashrelief,
  4595.             sashwidth, showhandle,
  4596.         '''
  4597.         Widget.__init__(self, master, 'panedwindow', cnf, kw)
  4598.  
  4599.     
  4600.     def add(self, child, **kw):
  4601.         '''Add a child widget to the panedwindow in a new pane.
  4602.  
  4603.         The child argument is the name of the child widget
  4604.         followed by pairs of arguments that specify how to
  4605.         manage the windows. Options may have any of the values
  4606.         accepted by the configure subcommand.
  4607.         '''
  4608.         self.tk.call((self._w, 'add', child) + self._options(kw))
  4609.  
  4610.     
  4611.     def remove(self, child):
  4612.         '''Remove the pane containing child from the panedwindow
  4613.  
  4614.         All geometry management options for child will be forgotten.
  4615.         '''
  4616.         self.tk.call(self._w, 'forget', child)
  4617.  
  4618.     forget = remove
  4619.     
  4620.     def identify(self, x, y):
  4621.         '''Identify the panedwindow component at point x, y
  4622.  
  4623.         If the point is over a sash or a sash handle, the result
  4624.         is a two element list containing the index of the sash or
  4625.         handle, and a word indicating whether it is over a sash
  4626.         or a handle, such as {0 sash} or {2 handle}. If the point
  4627.         is over any other part of the panedwindow, the result is
  4628.         an empty list.
  4629.         '''
  4630.         return self.tk.call(self._w, 'identify', x, y)
  4631.  
  4632.     
  4633.     def proxy(self, *args):
  4634.         '''Internal function.'''
  4635.         if not self._getints(self.tk.call((self._w, 'proxy') + args)):
  4636.             pass
  4637.         return ()
  4638.  
  4639.     
  4640.     def proxy_coord(self):
  4641.         '''Return the x and y pair of the most recent proxy location
  4642.         '''
  4643.         return self.proxy('coord')
  4644.  
  4645.     
  4646.     def proxy_forget(self):
  4647.         '''Remove the proxy from the display.
  4648.         '''
  4649.         return self.proxy('forget')
  4650.  
  4651.     
  4652.     def proxy_place(self, x, y):
  4653.         '''Place the proxy at the given x and y coordinates.
  4654.         '''
  4655.         return self.proxy('place', x, y)
  4656.  
  4657.     
  4658.     def sash(self, *args):
  4659.         '''Internal function.'''
  4660.         if not self._getints(self.tk.call((self._w, 'sash') + args)):
  4661.             pass
  4662.         return ()
  4663.  
  4664.     
  4665.     def sash_coord(self, index):
  4666.         '''Return the current x and y pair for the sash given by index.
  4667.  
  4668.         Index must be an integer between 0 and 1 less than the
  4669.         number of panes in the panedwindow. The coordinates given are
  4670.         those of the top left corner of the region containing the sash.
  4671.         pathName sash dragto index x y This command computes the
  4672.         difference between the given coordinates and the coordinates
  4673.         given to the last sash coord command for the given sash. It then
  4674.         moves that sash the computed difference. The return value is the
  4675.         empty string.
  4676.         '''
  4677.         return self.sash('coord', index)
  4678.  
  4679.     
  4680.     def sash_mark(self, index):
  4681.         '''Records x and y for the sash given by index;
  4682.  
  4683.         Used in conjunction with later dragto commands to move the sash.
  4684.         '''
  4685.         return self.sash('mark', index)
  4686.  
  4687.     
  4688.     def sash_place(self, index, x, y):
  4689.         '''Place the sash given by index at the given coordinates
  4690.         '''
  4691.         return self.sash('place', index, x, y)
  4692.  
  4693.     
  4694.     def panecget(self, child, option):
  4695.         '''Query a management option for window.
  4696.  
  4697.         Option may be any value allowed by the paneconfigure subcommand
  4698.         '''
  4699.         return self.tk.call((self._w, 'panecget') + (child, '-' + option))
  4700.  
  4701.     
  4702.     def paneconfigure(self, tagOrId, cnf = None, **kw):
  4703.         '''Query or modify the management options for window.
  4704.  
  4705.         If no option is specified, returns a list describing all
  4706.         of the available options for pathName.  If option is
  4707.         specified with no value, then the command returns a list
  4708.         describing the one named option (this list will be identical
  4709.         to the corresponding sublist of the value returned if no
  4710.         option is specified). If one or more option-value pairs are
  4711.         specified, then the command modifies the given widget
  4712.         option(s) to have the given value(s); in this case the
  4713.         command returns an empty string. The following options
  4714.         are supported:
  4715.  
  4716.         after window
  4717.             Insert the window after the window specified. window
  4718.             should be the name of a window already managed by pathName.
  4719.         before window
  4720.             Insert the window before the window specified. window
  4721.             should be the name of a window already managed by pathName.
  4722.         height size
  4723.             Specify a height for the window. The height will be the
  4724.             outer dimension of the window including its border, if
  4725.             any. If size is an empty string, or if -height is not
  4726.             specified, then the height requested internally by the
  4727.             window will be used initially; the height may later be
  4728.             adjusted by the movement of sashes in the panedwindow.
  4729.             Size may be any value accepted by Tk_GetPixels.
  4730.         minsize n
  4731.             Specifies that the size of the window cannot be made
  4732.             less than n. This constraint only affects the size of
  4733.             the widget in the paned dimension -- the x dimension
  4734.             for horizontal panedwindows, the y dimension for
  4735.             vertical panedwindows. May be any value accepted by
  4736.             Tk_GetPixels.
  4737.         padx n
  4738.             Specifies a non-negative value indicating how much
  4739.             extra space to leave on each side of the window in
  4740.             the X-direction. The value may have any of the forms
  4741.             accepted by Tk_GetPixels.
  4742.         pady n
  4743.             Specifies a non-negative value indicating how much
  4744.             extra space to leave on each side of the window in
  4745.             the Y-direction. The value may have any of the forms
  4746.             accepted by Tk_GetPixels.
  4747.         sticky style
  4748.             If a window\'s pane is larger than the requested
  4749.             dimensions of the window, this option may be used
  4750.             to position (or stretch) the window within its pane.
  4751.             Style is a string that contains zero or more of the
  4752.             characters n, s, e or w. The string can optionally
  4753.             contains spaces or commas, but they are ignored. Each
  4754.             letter refers to a side (north, south, east, or west)
  4755.             that the window will "stick" to. If both n and s
  4756.             (or e and w) are specified, the window will be
  4757.             stretched to fill the entire height (or width) of
  4758.             its cavity.
  4759.         width size
  4760.             Specify a width for the window. The width will be
  4761.             the outer dimension of the window including its
  4762.             border, if any. If size is an empty string, or
  4763.             if -width is not specified, then the width requested
  4764.             internally by the window will be used initially; the
  4765.             width may later be adjusted by the movement of sashes
  4766.             in the panedwindow. Size may be any value accepted by
  4767.             Tk_GetPixels.
  4768.  
  4769.         '''
  4770.         if cnf is None and not kw:
  4771.             cnf = { }
  4772.             for x in self.tk.split(self.tk.call(self._w, 'paneconfigure', tagOrId)):
  4773.                 cnf[x[0][1:]] = (x[0][1:],) + x[1:]
  4774.             
  4775.             return cnf
  4776.         
  4777.         if type(cnf) == StringType and not kw:
  4778.             x = self.tk.split(self.tk.call(self._w, 'paneconfigure', tagOrId, '-' + cnf))
  4779.             return (x[0][1:],) + x[1:]
  4780.         
  4781.         self.tk.call((self._w, 'paneconfigure', tagOrId) + self._options(cnf, kw))
  4782.  
  4783.     paneconfig = paneconfigure
  4784.     
  4785.     def panes(self):
  4786.         '''Returns an ordered list of the child panes.'''
  4787.         return self.tk.call(self._w, 'panes')
  4788.  
  4789.  
  4790.  
  4791. class Studbutton(Button):
  4792.     
  4793.     def __init__(self, master = None, cnf = { }, **kw):
  4794.         Widget.__init__(self, master, 'studbutton', cnf, kw)
  4795.         self.bind('<Any-Enter>', self.tkButtonEnter)
  4796.         self.bind('<Any-Leave>', self.tkButtonLeave)
  4797.         self.bind('<1>', self.tkButtonDown)
  4798.         self.bind('<ButtonRelease-1>', self.tkButtonUp)
  4799.  
  4800.  
  4801.  
  4802. class Tributton(Button):
  4803.     
  4804.     def __init__(self, master = None, cnf = { }, **kw):
  4805.         Widget.__init__(self, master, 'tributton', cnf, kw)
  4806.         self.bind('<Any-Enter>', self.tkButtonEnter)
  4807.         self.bind('<Any-Leave>', self.tkButtonLeave)
  4808.         self.bind('<1>', self.tkButtonDown)
  4809.         self.bind('<ButtonRelease-1>', self.tkButtonUp)
  4810.         self['fg'] = self['bg']
  4811.         self['activebackground'] = self['bg']
  4812.  
  4813.  
  4814.  
  4815. def _test():
  4816.     root = Tk()
  4817.     text = 'This is Tcl/Tk version %s' % TclVersion
  4818.     if TclVersion >= 8.1:
  4819.         
  4820.         try:
  4821.             text = text + unicode('\nThis should be a cedilla: \xe7', 'iso-8859-1')
  4822.         except NameError:
  4823.             pass
  4824.         except:
  4825.             None<EXCEPTION MATCH>NameError
  4826.         
  4827.  
  4828.     None<EXCEPTION MATCH>NameError
  4829.     label = Label(root, text = text)
  4830.     label.pack()
  4831.     test = Button(root, text = 'Click me!', command = (lambda root = root: root.test.configure(text = '[%s]' % root.test['text'])))
  4832.     test.pack()
  4833.     root.test = test
  4834.     quit = Button(root, text = 'QUIT', command = root.destroy)
  4835.     quit.pack()
  4836.     root.iconify()
  4837.     root.update()
  4838.     root.deiconify()
  4839.     root.mainloop()
  4840.  
  4841. if __name__ == '__main__':
  4842.     _test()
  4843.  
  4844.